Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 os x 10.7 上使用 xcode 4.4,在任何版本中,如果我们在 appdelegate 中提供导航控制器,屏幕将导航到我们提供的视图控制器。但在 Xcode 4.4 中,它不导航并且显示空视图控制器。在那个视图控制器中,我也无法通过使用按钮来导航到另一个视图控制器。
提前感谢您的帮助。
应用程序委托永远不会出现在屏幕上......它具有指向屏幕的 window 属性。我建议做的是初始化一个视图控制器,然后初始化一个导航控制器并将它的 rootviewcontroller 属性设置为您之前创建的视图控制器。然后在应用委托的applicationDidFinishLaunchingWithOptions方法中,执行[self.window setRootViewController: nameOfYourNavigationController ];