How do I create a view controller file after creating a new view controller?

后端 未结 2 945
夕颜
夕颜 2021-01-30 08:21

I am developing a tabbed application.

When I create a new view controller and link it to the tab bar controller, unlike the other two default view controllers, this one

2条回答
  •  粉色の甜心
    2021-01-30 08:31

    Correct, when you drag a view controller object onto your storyboard in order to create a new scene, it doesn't automatically make the new class for you, too.

    Having added a new view controller scene to your storyboard, you then have to:

    1. Create a UIViewController subclass. For example, go to your target's folder in the project navigator panel on the left and then control-click and choose "New File...". Choose a "Cocoa Touch Class":

      Cocoa Touch Class

      And then select a unique name for the new view controller subclass:

      UIViewController subclass

    2. Specify this new subclass as the base class for the scene you just added to the storyboard.

      enter image description here

    3. Now hook up any IBOutlet and IBAction references for this new scene with the new view controller subclass.

提交回复
热议问题