2
Q
註冊本地通知
A
回答
3
我建議你閱讀的話題下面的文章,我發現非常有用
http://useyourloaf.com/blog/2010/7/31/adding-local-notifications-with-ios-4.html
- (void)scheduleNotification {
[[UIApplication sharedApplication] cancelAllLocalNotifications];
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.fireDate = [datePicker date];
notif.timeZone = [NSTimeZone defaultTimeZone];
notif.alertBody = @"Body";
notif.alertAction = @"AlertButtonCaption";
notif.soundName = UILocalNotificationDefaultSoundName;
notif.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
[notif release];
}
}
這只是它是如何工作,但從此開始,你應該能夠安排通知的基本輪廓。
相關問題
- 1. 爲本地通知註冊計數
- 2. 註冊爲本地和遠程通知
- 3. 核心數據 - 注意更改並註冊本地通知
- 4. 如何在特定時間每天註冊本地通知?
- 5. 註冊來自後臺的本地通知
- 6. 如何在Swift 3中創建/註冊本地通知設置?
- 7. 註冊推送通知
- 8. 註冊通知未顯示
- 9. 註冊短信通知
- 10. 在註冊後,Sinch再次註冊了通知unregisterPushNotificationDeviceToken
- 11. Android:何時註冊和取消註冊通知?
- 12. 本地通知
- 13. 本地通知
- 14. 本地通知
- 15. 本地通知?
- 16. 有效地註冊多個觀察通知
- 17. 註冊異步通知的URL?
- 18. 註冊推送通知失敗iOS
- 19. 無法註冊遠程通知
- 20. 如何註冊推送通知? ios10
- 21. Qt:如何註冊電話通知?
- 22. 註冊遠程通知無聲無息
- 23. Magnolia CMS - 公共用戶註冊通知
- 24. iOS Urban Airship取消註冊通知
- 25. Xamarin通知中心註冊錯誤
- 26. 基於帳戶註冊推送通知
- 27. 電梯 - 顯示通知註冊
- 28. 無法推送通知註冊設備
- 29. Firefox通知返回無效註冊FCM
- 30. iOS:如何註冊推送通知?
我可以安排通知,但如何重複它的每個星期五,也發送本地通知 – user1244533 2012-03-02 10:18:55
WTF甲肝你曾經自己做任何事情之前,如何激活用戶註冊? – 2016-01-17 11:01:38