iOS本地通知的实现

通知的原理,在这里就不做过多的解释了,不懂的朋友可以自行Google

这里我们主要说下本地推送。
目前来说本地通知主要分为iOS 10 及 iOS 10以下两种不同方式

iOS 10及其以上的写法

+(void) createNotification
{
    //设置通知内容
    UNMutableNotificationContent * content = [[UNMutableNotificationContent alloc] init];
    content.title = @"推送的标题";
    content.body = @"推送的内容";
    content.subtitle = @"推送的子标题";
    content.badge = [NSNumber numberWithInteger:0];// 红标
    content.sound = [UNNotificationSound defaultSound];
    //[UNNotificationSound soundNamed:@""]; 自定义推送声音

    //给通知添加本地图片或者视频,写法同下
    NSString *path = [[NSBundle mainBundle] pathForResource:@"rank2" ofType:@"png"];
    NSError *error = nil;
    /*
     UNNotificationAttachment是指可以包含音频,图像或视频内容。使用本地通知时,可以在通知创建时,将附件加入即可。对于远程通知,则必须实现使用UNNotificationServiceExtension类通知服务扩展。
     */
    UNNotificationAttachment *img_attachment = [UNNotificationAttachment attachmentWithIdentifier:@"att1" URL:[NSURL fileURLWithPath:path] options:nil error:&error];
    if (error) {
        NSLog(@"%@", error);
    }
    content.attachments = @[img_attachment];//默认只显示第一个
    content.launchImageName = @"launch2";

    //消息的处理按钮
    UNTextInputNotificationAction *action1 = [UNTextInputNotificationAction actionWithIdentifier:@"replyAction" title:@"回复" options:UNNotificationActionOptionNone];
    UNNotificationAction *action2 = [UNNotificationAction actionWithIdentifier:@"enterAction" title:@"进入应用" options:UNNotificationActionOptionForeground];

    UNNotificationAction *action3 = [UNNotificationAction actionWithIdentifier:@"cancelAction" title:@"取消" options:UNNotificationActionOptionDestructive];

    UNNotificationCategory *categroy = [UNNotificationCategory categoryWithIdentifier:@"CategroyAction" actions:@[action1,action2,action3] intentIdentifiers:@[] options:UNNotificationCategoryOptionCustomDismissAction];

    [[UNUserNotificationCenter currentNotificationCenter] setNotificationCategories:[NSSet setWithObject:categroy]];
    content.categoryIdentifier = @"CategroyAction";

    //设置推送的触发机制
    UNTimeIntervalNotificationTrigger * trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:10 repeats:NO];

    //日历形式,
//    NSDateComponents * dateComp = [[NSDateComponents alloc] init];
//    dateComp.weekday = 2;//周一,默认第一天是周日
//    dateComp.month = 12;//月份,您可以在这里设置具体的时分秒
//    dateComp.hour = 10;//小时
//    dateComp.minute = 14;//分钟
//    UNCalendarNotificationTrigger * calendarTrigger = [UNCalendarNotificationTrigger triggerWithDateMatchingComponents:dateComp repeats:YES];

    //地理位置推送.没实际应用过
//    CLLocationCoordinate2D  location ;
//    location.latitude = 123;
//    location.longitude = 111;
//
//    CLCircularRegion * region = [[CLCircularRegion alloc] initWithCenter:location radius:100.0 identifier:@"regionid"];
//
//    UNLocationNotificationTrigger * locationTrigger = [UNLocationNotificationTrigger triggerWithRegion:region repeats:YES];

    NSString * identifier = @"notification_onlytextid";
    UNNotificationRequest * request = [UNNotificationRequest requestWithIdentifier:identifier content:content trigger:trigger];
    [[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {

    }];
}

在iOS 10上 我们可以定义对于推送的各种快捷操作,那么我们的如何实现操作方法呢?
答案就是代理,苹果官方的API几乎都是如此!
首先 遵循 代理 <UNUserNotificationCenterDelegate>
实现代理方法,在实际开发中,注意对应的 categoryid

-(void) userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler
{
    NSString * categoryid = response.notification.request.content.categoryIdentifier;
    NSLog(@"收到通知:%@",response.notification.request.content);
    //识别同类类型id
    if ([categoryid isEqualToString:@"CategroyAction"])
    {
        //识别通知操作动作的id
        if ([response.actionIdentifier isEqualToString:@"replyAction"])
        {
            UNTextInputNotificationResponse * textResponse = (UNTextInputNotificationResponse *) response;
            NSString * text = textResponse.userText;
            //此为输入的内容
        }
    }
    completionHandler();
}

iOS 10上 还有很多操作性的API,修改通知的内容或移除通知等

- identifiers 为我们为本地通知设置的id
//获取所有的未发出的通知,
- (void)getPendingNotificationRequestsWithCompletionHandler:(void(^)(NSArray<UNNotificationRequest *> *requests))completionHandler;

// 移除 identifiers 里面的通知
- (void)removePendingNotificationRequestsWithIdentifiers:(NSArray<NSString *> *)identifiers;
//获取发出的通知
- (void)getDeliveredNotificationsWithCompletionHandler:(void(^)(NSArray<UNNotification *> *notifications))completionHandler __TVOS_PROHIBITED;
// 移除  identifiers 里面 所有的 发出的通知
- (void)removeDeliveredNotificationsWithIdentifiers:(NSArray<NSString *> *)identifiers __TVOS_PROHIBITED;
- (void)removeAllDeliveredNotifications __TVOS_PROHIBITED;

iOS 10以下

   UILocalNotification * notification = [[UILocalNotification alloc] init];
        notification.alertTitle = @"推送的标题";
        notification.alertBody = @"推送的内容";
        notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:10];//10s 后
        notification.soundName = UILocalNotificationDefaultSoundName;
//        [[UIApplication sharedApplication] presentLocalNotificationNow:notification]; 立即触发
        [[UIApplication sharedApplication] scheduleLocalNotification:notification];//到设定时间触发

上篇:iOS推送权限开发判断
下篇:iOS通知消息的处理

如有瑕疵之处,望大家不吝指教

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