I've got an issue with an app I'm writing where all of the IBOutlet
and IBAction
connections in Interface Builder have the "warning" icon, and no IBOutlet
or IBAction
connections show up as available from any of my custom classes.
When I try to select the "Module" for the custom class, there's nothing to pick. I read this question and answer that instructed me to simply click in the Module text field and press , but that did nothing for me. The other instruction (to click the right arrow) simply takes me to the class's source code.
Additionally, when I click the drop-down to select the class for the object, none of my custom classes are listed. This is true for UIViewController
subclasses, UITableViewCell
subclasses, UIView
subclasses, etc.
When I run the app, the connections I had previously set are still intact and the app runs fine. If I re-open the app in Xcode 5, the connections are available and the classes show up in the Custom Class drop-down.
I can't run the app using Xcode 5 because I've added code that won't compile, so it gets really irritating to open the project in Xcode 5 just to make connections, then re-open the project in Xcode 6 to run it.
I am declaring all of my IBOutlet
and IBAction
connections in a private interface in my implementation file, but that's never been a problem before.
I'm using Objective-C, not Swift.
Surely I can't be the only one to have encountered this issue, right?