有什麼方法可以在不使用本地通知的情況下開發iphone應用程序。即使在鎖定狀態下,應用程序也應該觸發警報,以便我可以在鎖定狀態下進行網絡呼叫。 它可以在後臺狀態使用本地通知。無法使用UILocalNotification報警
1
A
回答
1
不,即使您設法讓您的應用程序在後臺運行,但由於錯過了支持的背景製作,您只能通過UILocalNotification
提醒用戶。
0
即使應用程序進入睡眠模式,我也設法使用dispatch_walltime觸發警報。 以前我使用的是NSTimer和dispatch_time,當應用程序進入睡眠模式時它將停止工作。 Grand Central Dispatch (GCD) Reference
相關問題
- 1. UILocalNotification調度警報
- 2. 自定義UILocalNotification的警報
- 3. 顯示UILocalNotification作爲警報
- 4. 當調用UILocalNotification時觸發警報
- 5. 如何通過UILocalNotification實現「報警」?
- 6. UILocalNotification警報框中的三個按鈕
- 7. UILocalNotification當iPhone靜音時報警
- 8. UILocalNotification的警報動作代碼
- 9. UILocalNotification特殊字符警報正文
- 10. 無法使用ChromeDriver檢測警報?
- 11. 無法使用EmailJS沒有警報
- 12. ajax無法正常使用警報框?
- 13. 我無法在警報()
- 14. Android:AlarmManager無法取消警報
- 15. UILocalNotification iOS5問題(無警示顯示)
- 16. iOS UILocalNotification僅在應用程序未運行時發出聲音(無警報)
- 17. 自定義UILocalNotification警報 - 用滑動滑塊或按鈕
- 18. 超過30秒的報警應用程序的UILocalnotification
- 19. 使用是,無命令顯示警報
- 20. 使用NSInvocation的調用警報方法
- 21. 無法使用Office Interop禁用Microsoft Publisher中的顯示警報
- 22. 如何將操作按鈕/操作添加到UILocalNotification警報中?
- 23. 警報在UILocalNotification是沒有得到所謂的
- 24. 是否有可能在預定後設置uilocalnotification警報主體
- 25. UILocalnotification沒有在設定的時間獲得警報?
- 26. 無法與JQuery一起使用RadioButton - 警報不會彈出
- 27. 無法使用硒webdriver獲取警報文本
- 28. 無法使用ClientScript.RegisterStartupScript在UpdatePanel中顯示警報
- 29. 無法在使用python的硒中截取警報框截圖
- 30. 多任務手勢無法使用警報
是的,我將不得不在後臺模式下通過UILocalNotification提醒用戶。但我需要一些其他的方法來觸發報警,當在前臺和屏幕被鎖定。 –
你不能在鎖屏上做任何事情,你也必須使用zUILocalNotification。 – rckoenes
如何使用NSTimer? –