如何为第二个ViewController添加代码文件

时间:2016-09-26 11:57:07

标签: swift2 xcode7

对于初学者的问题,请原谅我。 除了第一个默认的ViewController及其伴随文件ViewController.swift之外,我创建了第二个viewcontroller并知道如何移动它。 如何为其添加随播广告SecondViewController.swift

由于

1 个答案:

答案 0 :(得分:5)

如果您正在使用Xib,那么

1)Goto file-> New-> iOS-> Source-> Cocoa Touch Class

enter image description here

2)选择UIViewController作为您的基类并命名您的类,并选中“也创建Xib文件”复选框,单击“下一步”,然后单击“完成”。

enter image description here

现在您有一个新的ViewController,其中包含与之关联的文件。

如果您使用的是故事板,请按照以下步骤操作。

1)从对象库中拖放viewController

enter image description here

2)重复第一种方法的第1步和第2步,但这次不创建Xib文件

3)选择新拖动的droped ViewController,并按如下方式为其分配新类

enter image description here 现在你有了一个带有相关swift文件的新ViewController。