菜鸟教程小白 发表于 2022-12-13 15:08:09

ios - iOS 10 中不显示本地通知


                                            <p><p>我已在 Appdelegates 中尝试过此代码。</p>

<pre><code>@import UserNotifications;


UNUserNotificationCenter *center = ;
    [center requestAuthorizationWithOptions:(UNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert)
      completionHandler:^(BOOL granted, NSError * _Nullable error) {
            if (!error) {
            NSLog(@&#34;request authorization succeeded!&#34;);

                center.delegate = self;
            }
    }];
</code></pre>

<p>本地通知是由这段代码触发的</p>

<pre><code>-(void)localNotification{

NSLog(@&#34;local notification fired&#34;);

UNMutableNotificationContent *objNotificationContent = [ init];

objNotificationContent.title = @&#34;local notificatin&#34;;

objNotificationContent.body = @&#34;message&#34;;

objNotificationContent.sound = ;

/// 4. update application icon badge number
objNotificationContent.badge = @([ applicationIconBadgeNumber] + 1);

// Deliver the notification in five seconds.
UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger
                                              triggerWithTimeInterval:0.3 repeats:NO];

    UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:@&#34;three&#34;
                                                                      content:objNotificationContent trigger:trigger];

/// 3. schedule localNotification
UNUserNotificationCenter *center = ;
[center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
    if (!error) {
      NSLog(@&#34;Local Notification succeeded&#34;);
    }
    else {
      NSLog(@&#34;Local Notification failed&#34;);
    }
}];
</code></pre>

<p>}</p>

<p>但不显示本地通知。因为我使用了两种 Delegates 方法,一种是在前台显示当前通知,另一种是在收到本地通知时必须调用的方法。</p>

<p>在任何场景中都不会调用 Delegates 方法。</p>

<p>请在我错的地方找出愚蠢的错误</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您无法看到本地通知,因为您的应用程序可能在前台。如果您在前台,则不会显示本地通知。 </p>

<p>您的代码没问题,但我建议您进行一些更改并再次测试您的应用。 </p>

<ol>
<li>将触发时间增加到 10 秒。 <code>UNTimeIntervalNotificationTrigger *trigger = ;</code></li>
<li>在 <code>applicationDidEnterBackground</code> 中添加了以下内容 </li>
</ol>

<p><code>;</code></p>

<ol 开始=“3”>
<li>使应用程序进入后台。 </li>
<li>等待 10 秒,您将收到本地通知。</li>
</ol>

<p><strong>在前台显示通知</strong></p>

<p>如果您想在应用程序处于前台时显示通知,请实现</p>

<ol>
<li><p>在 <code>AppDelegate.h</code></p></li> 中符合 <code>UNUserNotificationCenterDelegate</code>
<li><p>在<code>AppDelegate.m</code></p>中添加如下代码

<p></p> <pre><code>-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler {
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
}</code></pre> <p></p></li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iOS 10 中不显示本地通知,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/43177103/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/43177103/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iOS 10 中不显示本地通知