iOs:如何考虑应用程序激活时收到的所有通知
<p><p>我正在为我的 iOS 应用设置 Apple 推送通知。<br/>
如果在应用未运行(或在后台)时收到多个通知,如何在应用(重新)启动时考虑所有收到的通知?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在 iOS 5 中,推送通知会累积在托盘中。 </p>
<p>在应用程序中:didFinishLaunchingWithOptions:
使用 UIApplicationLaunchOptionsRemoteNotificationKey。这将为您提供通知字典。</p>
<p>也许这对你有帮助 -</p>
<pre><code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
NSDictionary* dictionary = ;
}
</code></pre></p>
<p style="font-size: 20px;">关于iOs:如何考虑应用程序激活时收到的所有通知,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8895906/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8895906/
</a>
</p>
页:
[1]