標籤:blog io ar os on div log cti 代碼
?
不多說 直接上代碼
?NSDate *now = [NSDate date]; UILocalNotification *reminderNotification = [[UILocalNotification alloc] init]; // 本地訊息的時間間隔 [reminderNotification setFireDate: [now dateByAddingTimeInterval: 10]]; // 重複間隔 會在1分鐘後重複提醒,並在提醒後的下句指定時間再次提醒 即使App退出 依然會提醒 騷擾必備.... [reminderNotification setRepeatInterval: NSCalendarUnitSecond]; // 時區 [reminderNotification setTimeZone: [NSTimeZone localTimeZone]]; // 本地推送的訊息內容 [reminderNotification setAlertBody: @"本地推送測試"]; // 在鎖屏時,會顯示"滑動來"+Action內容 無此句則為預設:滑動查看 [reminderNotification setAlertAction: @"啟動"]; // 推送時的聲音 [reminderNotification setSoundName: UILocalNotificationDefaultSoundName]; // 增加應用表徵圖badge [reminderNotification setApplicationIconBadgeNumber: 1]; //設定隨Notification傳遞的參數 NSDictionary *infoDict = [NSDictionary dictionaryWithObjectsAndKeys:@"reminder", @"notificationId", nil]; reminderNotification.userInfo = infoDict; // 註冊本地推送 [[UIApplication sharedApplication] scheduleLocalNotification: reminderNotification];?
iOS關於本地推送