2
A
回答
1
Custamize的代碼。有關詳情請參閱UILocalNotification Class Reference
UILocalNotification *localNotification = [[[UILocalNotification alloc] init] autorelease];
localNotification.fireDate = date; //The date and time when the system should deliver the notification.
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.alertBody = alertBody;
localNotification.alertAction = @"View";
localNotification.repeatCalendar = [NSCalendar currentCalendar];
localNotification.repeatInterval = NSMonthCalendarUnit;
localNotification.soundName = UILocalNotificationDefaultSoundName;
localNotification.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
1
您需要使用UILocalNotification的API
根據您的需要參閱 http://www.icodeblog.com/2010/07/29/iphone-programming-tutorial-local-notifications/
相關問題
- 1. 設置重複提醒,每月重複
- 2. 每月提醒Web服務
- 3. 設置每天重複的提醒?
- 4. 每日提醒在iOS
- 5. 設置事件重複「重複每月」而不是「重複每個月,每個第31」ios
- 6. 提醒重複事件
- 7. 提醒iOS swift
- 8. 每月重複notifecations android
- 9. 每月重複計數
- 10. 如何在VB中設置每月提醒提示的時間
- 11. 提醒應用程序 - 重複某個提醒
- 12. iOS重置授予訪問提醒
- 13. Android:每日提醒
- 14. SQL中的重複事件提醒
- 15. Android:重複提醒,時間前後
- 16. 2分鐘後UILocalNotification重複提醒
- 17. android重複鬧鈴,應該每月重複一次,並在每個月的當天重複,等
- 18. UILocalNotification:每2個月,4個月,6個月重複一次?
- 19. JavaScript:重寫提醒()
- 20. 每月設置一次重複鬧鐘
- 21. iOS 6.0中的提醒API
- 22. Java每月複利
- 23. 雙重提醒消息
- 24. 雙重提醒窗口
- 25. 的R - 每天每月的時間序列 - 重複天
- 26. iOS提醒應用程序,如複選框
- 27. iOS的10:從特定日期,每月重複本地用戶通知
- 28. 如何提醒每一個發生?
- 29. 每位與會者的不同提醒
- 30. 每週提醒如何工作?
檢查此鏈接http://reecon.wordpress.com/2010/11/12/setting-a-reminder-using-uilocalnotification-in-ios-4-objective-c/ – riti