I am using Xcode 7.0 beta 4 and recently split my only Main.storyboard into a series of storyboards linked by storyboard links (recently introduced in Xcode 7).
When I create, I get the following Builder interface linker error message:
: error: The file "Info.plist" couldn't be saved in the folder "Pages.storyboardc". Underlying Errors: Description: The operation couldn't be completed. Not a directory Failure Reason: Not a directory
How can I understand this error?
Links to the storyboard were created by selecting the scenes in the original storyboard and choosing Editor> Reactor for storyboard .... The previous question I came up with was that the storyboard linker was causing a different error:
: error: Deploying Storyboard References to iOS 8.0 requires that your storyboards do not share any view controller identifiers. Browser.storyboard and Pages.storyboard both contain a view controller with identifier "PagesViewController".
It turned out that using the "Refactor to Storyboard ..." command automatically assigned the storyboard identifier of the storyboard link based on one of the refactored identifiers of the view controller. This led to the situation described in the error (a link to the storyboard with the same identifier as the scene identifier of the view controller). I deleted these identifiers because, in my opinion, you do not need to link to the storyboard link from the code.
Update:
I also saw that this problem manifests itself as a slightly different error:
: error: "<StoryboardReferenceID>.nib" couldn't be removed. Underlying Errors: Description: The operation couldn't be completed. Not a directory Failure Reason: Not a directory
source share