2
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"open app" message:@" backgr..." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];

[alertView show];

アプリがバックグラウンドで実行されているときにアラートを表示するにはどうすればよいですか?

4

1 に答える 1

4

UILocalNotificationアプリがバックグラウンドにある場合は a を使用します。

UILocalNotification *notification = [[UILocalNotification alloc] init];
notification.alertBody = @"Your message";
notification.alertAction = @"Open app";
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];
于 2013-03-29T11:57:55.020 に答える