获取程序中无需释放的ViewController

AppDelegate.h

@property (strong, nonatomic) UIViewController *viewController;

在需要用的地方

#define appDelegate ((AppDelegate *)[UIApplication sharedApplication].delegate)

if (!appDelegate.viewController) {

appDelegate.viewController =[ [UIViewController alloc]init]

}

[self presentViewController:appDelegate.viewController animated:YES completion:^{

}];

上一篇:Python之路,Day9, 进程、线程、协程篇


下一篇:C#编程语言与面向对象——抽象基类与接口