我有一个自定义UIViewController
类,我想在按下 a 时显示UITableViewCell
它,所以当按下特定单元格时我会收到一个回调。
我的项目是一个基于导航的应用程序,我已经创建了ViewController
我想在其中展示的应用程序,StoryBoard
但它没有连接到它,因为它应该从动态调用UITableViewCell
。
ViewController
也设置为子类化它的类。
所以现在我正在尝试做类似的事情:
[self.navigationController pushViewController:[[AddAccountsViewController alloc]init] animated:YES];
它确实推动但我看到的只是黑屏。XIB
我可以单独创建它,但是我失去了我不想要的 4 英寸屏幕自动调整行为。
我该怎么办?