我的 AppDelegate 中有一个属性,如下所示
@property (nonatomic, retain) UIViewController *viewController;
这个 viewController 现在被保留了。
现在我有另一个名为 StateClass 的类,在此期间我进行了一些转换
AppDelegate *appDelegate= (AppDelegate *)[[UIApplication sharedApplication] delegate];
NewController *mycontrol = [[NewController alloc] init];
UINavigationController *tempcontroller = [[UINavigationController alloc] initWithRootViewController:mycontrol];
appDelegate.viewController= mycontrol;
if (appDelegate.viewController==nil)
{
DDLogInfo(@"appdelegate viewController is null");
}
有时将其打印为空,有时它可以工作,我被这个问题困住了,任何人都可以拉进来帮助我吗