I just upgraded Xcode to 5.0. I'm still pretty new to cocoa, so hopefully I'll miss something basic. Basically, I can't get Xcode to see user classes that I want to use as parent classes for view controllers. Initially, I wanted to create a custom class for the table controller, but to simplify the problem, I tried it with the usual view controllers, but this also does not work.
What am I doing:
- Create New Project: One-View Application
- Add to it the cocoa class (class File-> New-> File → Objective-C. I call it MyViewController and make it a subclass of UIViewController
- I select the default view that comes with the project template in the storyboard, and in the identity inspector I try to select MyViewController in a custom class
The class simply does not appear in the drop-down list, and I cannot print it either. Many other threats reporting the same problem suggest closing / reopening the project and Xcode, but this does not work for me.
garma source share