Post

Replies

Boosts

Views

Activity

Reply to Xcode: There is not enough disk space available to install the product. Yet I have plenty of space
The 11.2 GB package is a compressed file. You need enough disk space to store both the compressed and expanded files. A good rule of thumb is you need 5 times the space of the package you're downloading, which would be 56 GB in your case. See the article at the following link for more information: meandmark.com/blog/2020/04/disk-space-required-to-install-xcode/
Sep ’20
Reply to Xcode, git, and gitignore
In Xcode's Source Control preferences, click the Git button. There is an Ignored Files list where you can add files to ignore. One thing to keep in mind is if git is tracking a file before you add files to ignore, git will keep tracking the file. You will have to temporarily move the file out of the .git folder (This basically involves moving the file out of the project folder), commit to git, then move the file back.
Sep ’20
Reply to Unexpected behavior with Xcode 12 split view Controller?
A split view has multiple view controllers: one for the split view and one for each split view item. My guess is one of the other view controllers is getting the message to change the background color. Which view controller has the button that triggers the IBAction? If you want the whole window's background color to change, you should put the IBAction to change the color in the split view controller. Then you can go through each child view controller and change the view's background color.
Sep ’20
Reply to ld: framework not found
Third party frameworks should be installed in /Library/Frameworks. The System folder is for Apple's frameworks. How are you adding the framework to the project? Is the framework in the Frameworks, Libraries, and Embedded Content section of your app target? If not, what happens when you click the Add button and add the framework that way?
Oct ’20