Tag: iOSSDK/Local Notification
UILocalNotification *notification = [[UILocalNotification alloc] init]; //通知日時 notification.fireDate = [[NSDate date] addTimeInterval:5]; //タイムゾーン notification.timeZone = [NSTimeZone defaultTimeZone]; //メッセージ notification.alertBody = @"Notification"; //アクション notification.alertAction = @"Open"; //サウンド notification.soundName = UILocalNotificationDefaultSoundName; [[UIApplication sharedApplication] scheduleLocalNotification:notification];
[[UIApplication sharedApplication] cancelAllLocalNotifications];