Appdelegate中的IOS内存管理对象问题

时间:2013-08-03 06:43:35

标签: ios objective-c memory-management

我的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");
}

有时将它打印为null并且有时它可以正常工作,我遇到这个问题可以任何身体拉进来帮助我

0 个答案:

没有答案