Post

Replies

Boosts

Views

Activity

Reply to Search path problem with XCode 9.4.1
Xcode has a Search Paths collection of build settings where you can add search paths for headers and libraries. Select the project file from the project navigator on the left side of the project window to open the project editor. Select the project from the left side of the project editor. Click the Build Settings button on the top of the project editor to access the build settings. Entering Search Paths in the search field will show the Search Paths collection.
Nov ’21
Reply to Xcode Single Executable File in C
If you are writing lots of small programs for a C programming course, you are better off using a text editor like VSCode, Sublime Text, BBEdit, or TextMate to write your code instead of Xcode. Xcode requires a project to create an executable file. You can't just create a C file in Xcode and run it. I know TextMate has a C bundle that lets you run your programs from inside TextMate by choosing Bundle > C > Run. I'm sure the other text editors I mentioned have ways to run your programs from the editor.
Nov ’21
Reply to XCODE about distribute MINI6?
My guess is Xcode 11.4 does not support iOS devices introduced after Xcode 11.4's release, which was March 24, 2020. The iPad Mini 6 came out in 2021. Do you have another iOS device introduced after March 2020 to test my guess? You most likely need to update to a newer Xcode version to install your app on the iPad Mini 6.
Nov ’21
Reply to Best way to integrate different developemnt directions/branches of one project
Place your project under version control. In Xcode choose Source Control > New Git Repositories to place your project under version control. Press Cmd-2 to access Xcode's source control navigator. From the source control navigator you can create branches for your project. If you need a more detailed explanation on Xcode's version control features, take a look at the book at the following page: swiftdevjournal.com/version-control-book/ There are also alternatives to using Xcode for working with git. The following page has a list of git GUI clients: git-scm.com/downloads/guis
Nov ’21
Reply to Drag and Drop Activity
Go to a search engine and search for SpriteKit drag. You will find several articles on dragging and dropping SpriteKit sprites. The articles assume you know some Swift. If you find the material in those articles too difficult, I recommend going through the free 100 day course at Hacking with Swift. One of the projects in the course is a SpriteKit game. After going through the course, you will know enough to follow the articles on drag and drop with SpriteKit.
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Dec ’21
Reply to How to provide a rich text WYSIWYG to user?
The SwiftUI TextEditor view does not currently support rich text. You will have to wrap either UITextView (iOS) or NSTextView (Mac) using the UIViewRepresentable or NSViewRepresentable protocols. Search for UIViewRepresentable in a search engine to find articles on how to do this. You may also find the following article helpful even though it doesn't deal specifically with rich text: swiftdevjournal.com/using-text-views-in-a-swiftui-app/
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’21