1.首先在Appdalegate.h 修改如下

@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
    UINavigationController *_navigationController;
}
@property (nonatomic, retain)UINavigationController *navigationController;

2.然后在Appdalegate.m 修改如下

    self.navigationController = [[UINavigationController alloc]initWithRootViewController:self.viewController];
    self.window.rootViewController = self.navigationController;

这样就完成了

相关文章:

  • 2021-12-30
  • 2021-05-17
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2021-04-12
  • 2021-11-06
  • 2021-09-02
  • 2021-04-05
相关资源
相似解决方案