iOS本地推送笔记

本地推送(使用UserNotifications框架实现)

一、从APNs注册device token:

在app启动流程中调用的didFinishLaunchingWithOptions方法中调用registerForRemoteNotification方法

registerForRemoteNotification方法判断iOS系统版本,调用requestAuthorizationWithOptions

代码如下:


- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {

    // Override point for customization after application launch.

    [self registerNotification];

    return YES;

}

- (void)registerNotification {

      UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

      [center requestAuthorizationWithOptions:(UNAuthorizationOptionAlert + UNAuthorizationOptionSound) completionHandler:^(BOOL granted, NSError * _Nullable error) {

      }];

}

方法请求通知授权

二、添加本地通知:

iOS版本10以上:UNUserNotificationCenter创建推送通知中心,声明UNMutableNotificationContent对象

创建通知内容,然后设置本地通知的触发条件,可以用NSTimeInterval设置多久后发送,然后使用UNTimeIntervalNotificationTrigger

触发定时发送,此外还有指定日期时间条件的触发方法UNCalendarNotificationTrigger,以及根据地理区域触发的UNLocationNotificationTrigger方法,[UNNotificationRequest requestWithIdentifier:identifier(NSString对象,这个推送的标签)content:content trigger:trigger]创建一个创建本地推送的请求,addNotificationRequest:request

发送该请求,请求成功则创建成功

iOS版本10以下:UILocalNotification创建本地推送,[[UIApplication sharedApplication]scheduleLocalNotification:notif]使用UIApplication单例添加该推送

代码:


-(void)addLocalNoticeWithID:(NSString*)identifier {

        UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

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

        content.title=@"Local Push Test";

        content.subtitle=@"Subtitle: Damn!";

        content.body = @"Do you have freestyle? Skrrr~~~";

        content.sound = [UNNotificationSound defaultSound];*

        content.badge= @1;

        NSTimeInterval time = [[NSDate dateWithTimeIntervalSinceNow:10] timeIntervalSinceNow];

        UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:time repeats:**NO**];

        UNNotificationRequest *request = [UNNotificationRequestrequestWithIdentifier:identifier content:content trigger:trigger];

        [center addNotificationRequest:request withCompletionHandler:^(NSError *_Nullable error) {

            NSLog(@"Local Push was successfully added!");

        }];

}

三、移除某本地推送:

iOS版本10以上:UNUserNotificationCenter获取推送通知中心,getPendingNotificationRequestsWithCompletionHandler方法获取当前所有本地推送的请求,如果存在我们希望移除的identifier则调removePendingNotificationRequestsWithIdentifiers方法删除。removeAllPendingNotificationRequests方法移除全部本地推送

iOS版本10以下:[[UIApplication sharedApplication]scheduledLocalNotifications]获取所有已经添加的本地推送的数组,遍历数组,找到相应的identifier的推送后使用cancelLocalNotification:localNotification方法移除。cancelAllLocalNotifications移除全部本地推送


- (void)removeOneNotificationWithID:(NSString*)noticeId {

        UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

        [center getPendingNotificationRequestsWithCompletionHandler:^(NSArray<UNNotificationRequest *> * _Nonnull requests) {

            for(UNNotificationRequest *req in requests){

                NSLog(@"The exist IDs:%@\n",req.identifier);

            }

            NSLog(@"Remove currentID:%@",noticeId);

        }];

        [center removePendingNotificationRequestsWithIdentifiers:@[noticeId]];

}

四、检查授权情况:

iOS版本10以上:UNUserNotificationCenter获取推送通知中心,getNotificationSettingsWithCompletionHandler获取当前推送设置,若settings.notificationCenterSetting == UNNotificationSettingEnabled则说明推送功能已开启,否则就是关闭状态

iOS版本10以下:直接通过[UIApplication sharedApplication]currentUserNotificationSettings].types获取通知开关状态


- (void)checkUserNotificationEnable {

        __block BOOL isOn =NO;

        UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];

        [center getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {

            if(settings.notificationCenterSetting==UNNotificationSettingEnabled) {

                isOn =YES;

                NSLog(@"Turned on the notify");

            }else{

                isOn =NO;

                NSLog(@"Turned off the notify");

                if(self.delegate&& [self.delegaterespondsToSelector:@selector(showAlertView)]) {

                    [self.delegate showAlertView];

                }

            }

        }];

}

参考:https://www.jianshu.com/p/0f0dd782fdd5 UserNotifications框架详解
https://www.jianshu.com/p/9b1fa25a0712 iOS 本地推送(Local Push)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容

  • 许多集成的步骤个推官网都有了,这里只写关于推送的远程推送和本地通知的步骤和代码。APP在后台时:走苹果的APNS通...
    AllureJM阅读 2,717评论 1 9
  • 极光推送: 1.JPush当前版本是1.8.2,其SDK的开发除了正常的功能完善和扩展外也紧随苹果官方的步伐,SD...
    Isspace阅读 6,715评论 10 16
  • 推送通知 注意:这里说的推送通知跟NSNotification有所区别 NSNotification是抽象的,不可...
    iOS开发攻城狮阅读 4,217评论 1 13
  • 推送通知注意:这里说的推送通知跟NSNotification有所区别NSNotification是抽象的,不可见的...
    醉叶惜秋阅读 1,511评论 0 3
  • 春节将至,家家团圆,我更想念逝去的父母,发一首过去写的诗,以抒心怀。 望月 被潇潇秋雨,遮蔽芳容,归鸟静,...
    春江细语阅读 669评论 5 19