我正在学习iOS开发以及一些教程。其中一人说:
Create a new view controller, call it StoreViewController, and inside the app delegate instantiate a new object for this controller and put it inside a new navigation controller
我创建了一个新的ViewController,带有.h .m和.xib文件,已将此代码放在AppDelegate.m didFinishLaunchingWithOptions方法中:
StoreViewController *trStore = [[StoreViewController alloc] init];
现在我在...and put it inside a new navigation controller
看到了,但我无法理解。我有一个带有NavigationController的故事板,我可以将这个StoreViewController与我的导航控制器链接吗?你懂什么??
提前致谢