ローカル通知を受け取った後、ユーザーがアプリに入ったときにビューを表示する必要があります。
didReceiveLocalNotifications
メソッドに以下のコードを書きました。
NotificationModelClass *remainderAlert = [[NotificationModelClass alloc]initWithNibName:@"NotificationModelClass" bundle:nil];
[remainderAlert showRemainderAlert1];
[self.viewController presentModalViewController:remainderAlert animated:YES];
ユーザーが MainView Controller を介してバックグラウンドに入ると、正常に動作しています。しかし、私はそのビューを任意のviewControllerに表示したいと考えています。