How do you declare a view controller with Objective C?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Sorta depends. Just to give one example, let's say you have a new project setup using apple's "View based app" template. If you want to have a new view "slide up" and replace your current view you can do this. Add a new file to you project of type 'UIViewController subclass', and select the 'With XIB for user interface' option. Now, in you code, when you want to display this view do this:
This is assuming that your new UIViewController subclass name is MyViewController and the the XIB is named MyViewController (so you should have MyViewController.c(.h)(.xib) |
|||
|
|