UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"open app" message:@" backgr..." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
アプリがバックグラウンドで実行されているときにアラートを表示するにはどうすればよいですか?
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"open app" message:@" backgr..." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertView show];
アプリがバックグラウンドで実行されているときにアラートを表示するにはどうすればよいですか?
UILocalNotification
アプリがバックグラウンドにある場合は a を使用します。
UILocalNotification *notification = [[UILocalNotification alloc] init];
notification.alertBody = @"Your message";
notification.alertAction = @"Open app";
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];