菜鸟教程小白 发表于 2022-12-12 19:03:48

ios - UIApplicationLaunchOptionsLocalNotificationKey 始终为空 - iOS


                                            <p><p>我有一个使用本地通知的 iOS 应用程序。当应用程序在后台运行或处于事件状态时,我使用 <code>application didReceiveLocalNotification</code> 方法,效果很好。但是当应用程序关闭时(不在后台运行),我使用 <code>application didFinishLaunchingWithOptions</code> 方法来控制处理通知时发生的情况。</p>

<p>但是,我遇到的问题是 <code>didFinishLaunchingWithOptions</code> 方法中的通知始终是 <code>(null)</code>。</p>

<p>这是我的代码:</p>

<pre><code>-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // Override point for customization after application launch.

    // Register the app for local notifcations.

    if () {
      ];
    }

    // Setup the local notification check.
    UILocalNotification *notification = ;

    //UIAlertView *alertView = [ initWithTitle:@&#34;options&#34; message:notification delegate:nil cancelButtonTitle:@&#34;OK&#34; otherButtonTitles:nil];
    //;

    // Check if a notifcation has been received.

    if (notification) {

      // Run the notifcation.
      ];
    }

    // Ensure the notifcation badge number is hidden.
    application.applicationIconBadgeNumber = 0;

    return YES;
}
</code></pre>

<p>我在这里遗漏了什么吗?我已经先询问了用户的权限,并拥有正确的代码来获取通知对象。我的应用仅适用于 iOS 9 及更高版本。</p>

<p>感谢您抽出宝贵时间,丹。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在警报 View 中显示值 <code>launchOptions</code> 以查看是否有任何值。 </p>

<p>如果该值不为零,那么您的 UI 代码可能会在后台线程中执行。 </p>

<p>确保所有 UI 代码都在主线程中执行,如下所示:</p>

<pre><code>dispatch_async(dispatch_get_main_queue(), ^{
//self doSomething (UI Code)
});
</code></pre>

<p>当您在应用中使用异步调用时,这一点很重要。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UIApplicationLaunchOptionsLocalNotificationKey 始终为空 - iOS,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36246104/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36246104/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UIApplicationLaunchOptionsLocalNotificationKey 始终为空 - iOS