当用户在收到本地通知后进入应用程序时,我需要呈现一个视图。
我在方法中编写了以下代码didReceiveLocalNotifications
。
NotificationModelClass *remainderAlert = [[NotificationModelClass alloc]initWithNibName:@"NotificationModelClass" bundle:nil];
[remainderAlert showRemainderAlert1];
[self.viewController presentModalViewController:remainderAlert animated:YES];
当用户通过 MainView Controller 进入后台时,它工作正常。但我想在任何 viewController 中呈现该视图。