我的app委托有一个RootViewController * viewController;并使用此视图启动应用程序。
从这里开始,当用户导航到应用程序中的不同功能时,我将继续呈现模态视图(最多3个级别)。
我已经设置了应用程序以接收推送通知,并且我在app委托中有didReceiveRemoteNotification来检索有效负载。
现在问题:
答案 0 :(得分:1)
没有通用的内置方法。最好的解决方案可能是在您的应用代理中添加一个属性,您可以在其中存储它。
@property (nonatomic, retain) UIViewController *currentModalViewController;
当您提供模态视图控制器时,请执行以下操作:
#import "MyAppDelegate.h"
// ....
MyAppDelegate *appDelegate = (MyAppDelegate *)[UIApplication sharedApplication].delegate;
appDelegate.currentModalViewController = vc;
[self presentModalViewController:vc animated:YES];
您还需要确保在解雇时丢失参考:
[self dismissModalViewControllerAimated:YES];
MyAppDelegate *appDelegate = (MyAppDelegate *)[UIApplication sharedApplication].delegate;
appDelegate.currentModalViewController = nil;
然后在您的app委托中,您拥有所需的一切,以便关闭当前的模态视图控制器并检查当前是否存在模态视图控制器。