• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

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

[复制链接]
菜鸟教程小白 发表于 2022-12-13 15:08:09 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我已在 Appdelegates 中尝试过此代码。

@import UserNotifications;


UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
    [center requestAuthorizationWithOptionsUNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert)
        completionHandler:^(BOOL granted, NSError * _Nullable error) {
            if (!error) {
            NSLog(@"request authorization succeeded!");

                center.delegate = self;
            }
    }];

本地通知是由这段代码触发的

-(void)localNotification{

NSLog(@"local notification fired");

UNMutableNotificationContent *objNotificationContent = [[UNMutableNotificationContent alloc] init];

objNotificationContent.title = @"local notificatin";

objNotificationContent.body = @"message";

objNotificationContent.sound = [UNNotificationSound defaultSound];

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

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

    UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier"three"
                                                                      contentbjNotificationContent trigger:trigger];

/// 3. schedule localNotification
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
[center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
    if (!error) {
        NSLog(@"Local Notification succeeded");
    }
    else {
        NSLog(@"Local Notification failed");
    }
}];

}

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

在任何场景中都不会调用 Delegates 方法。

请在我错的地方找出愚蠢的错误



Best Answer-推荐答案


您无法看到本地通知,因为您的应用程序可能在前台。如果您在前台,则不会显示本地通知。

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

  1. 将触发时间增加到 10 秒。 UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:10 repeats:NO];
  2. applicationDidEnterBackground 中添加了以下内容

[self localNotification];

  1. 使应用程序进入后台。
  2. 等待 10 秒,您将收到本地通知。

在前台显示通知

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

  1. AppDelegate.h

  2. 中符合 UNUserNotificationCenterDelegate
  3. AppDelegate.m

    中添加如下代码

    -(void)userNotificationCenterUNUserNotificationCenter *)center willPresentNotificationUNNotification *)notification withCompletionHandlervoid (^)(UNNotificationPresentationOptions))completionHandler {
    completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
    }

关于ios - iOS 10 中不显示本地通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43177103/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap