我们如何创建新的CustomizeViewController
UIViewController
,UITableViewController
和etc
...
如果有人对此有所了解,请与我们分享。
答案 0 :(得分:2)
您无法从头开始创建视图控制器。如果要创建自己的视图控制器,则必须将 UIViewController 子类化,
@interface CustomizedViewController : UIViewController
稍后,如果你想创建 CustomizedViewController 的子类,只需扩展它,
@interface FurtherCustomizedViewController : CustomizeViewController
答案 1 :(得分:0)
我们如何创建一个新的CustomizeViewController,如UIViewController
UIViewController *CustomizeViewController = [[UIViewController alloc] init];
CustomizeViewController.view = whateverViewYouHave;