2

プッシュ通知 (didReceiveRemoteNotification) を受信したときに、アプリ デリゲートからビュー コントローラーに通知処理を渡すにはどうすればよいですか? これは、ビューにアラートを表示するのに役立ちます。ビューまたはその他の関連するものを解放します。

AppDelegate.m の疑似コード例:

- (void)application:(UIApplication*)application didReceiveRemoteNotification (NSDictionary*)userInfo{
NSLog(@"Received notification: %@", userInfo);
// Here send the userInfo or other data to the appropriate view controller for handling it there (for example showing an alert there) //
 }
4

1 に答える 1