In my Xcode project, I have several view controllers in my storyboard. How can I see the code for a specific view controller?
Because each view controller will need to have different functions from the others. So, where can I write that code?
Thanks!
By default, storyboard will use UIViewController for the view controllers you use.
However you can change the class used for the view controller by:
Where "MyOwnViewController" is the name of the UIViewController subclass that you want to use for that view controller.