2012-08-31 171 views
2

我開發了使用蘋果推送通知的iPad應用程序。推送通知傳遞在所有情況下均可正常工作,除非iPad設備被鎖定併發送通知。在這種情況下,它表現得很奇怪,並且當您滑動以解鎖設備而不觸摸警告/橫幅時打開應用程序。它在IOS版本4.3,5.1和也在6.0解鎖iPad時,推送通知提醒打開應用程序

發生在蘋果的文件,他們都提到如下:

http://developer.apple.com/library/ios/#DOCUMENTATION/NetworkingInternet/Conceptual/RemoteNotificationsPG/IPhoneOSClientImp/IPhoneOSClientImp.html

 
iOS Note: If the user unlocks the device shortly after a remote-notification alert is displayed, the operating system automatically triggers the action associated with the alert. (This behavior is consistent with SMS and calendar alerts.) This makes it even more important that actions related to remote notifications do not have destructive consequences. A user should always make decisions that result in the destruction of data in the context of the application that stores the data. 

什麼行動警報關聯?
操作系統會自動觸發與警報

相關的行動,還我想了解什麼是在這種情況下默認行爲?

任何幫助表示感謝,並提前感謝。

回答

2

它行爲不古怪,因爲這是默認行爲。當通知點亮屏幕時,「幻燈片解鎖」變爲「幻燈片查看」,這會打開您的應用並執行與通知相關的操作。

默認的操作是沒有任何反應,如果你沒有指定任何事情發生。

有關處理通知(與警報相關的操作),請參閱文檔:Link,處理本地和遠程通知

相關問題