次のように 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として出力されることもあれば、機能することもあります。この問題に悩まされています。どんな体でも引っ張って助けてください