あなたはそれらの値を変更することで、ボタンのタイトルをカスタマイズすることができ、ここでは一例です。ここで
UIAlertView* alert; alert = [[UIAlertView alloc] initWithTitle:@"Reminder" message:@"Reminder" delegate:nil cancelButtonTitle:@"Mark as Completed" otherButtonTitles: @'Later']; [alert show]; [alert release];
はプッシュ通知と例です。
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))handler
{
if (application.applicationState == UIApplicationStateActive) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Reminder" message:userInfo[@"Reminder"][@"alert"] delegate:nil cancelButtonTitle:@"Mark as Completed" otherButtonTitles:@"Later"];
[alertView show];
}
else if (application.applicationState == UIApplicationStateBackground || application.applicationState == UIApplicationStateInactive) {
}
}
これはアラートビューであり、通知ではありません –
これは実際にあなたが求めているものです:D。 – AESTHETICS
いいえ、通知がアラートビューとして表示されると、私は言ったのですか?つまり、ロック画面やバナーではない –