iOS带图片的通知

随着大量优秀的app出现,用户对于app的体验要求越来越高。而iOS以前的通知方式就显的不合适了,而苹果在iOS10之后提供的更多展现形式与更多交互的通知。

普通形式的通知被广泛的应用,由于开发成本的考虑,大多数应用采取了使用第三方厂商提供的通知服务。对于如何发起与接收一条通知本文就不再赘述,如有需求可直接查阅第三方厂商提供的SDK。

接下来,让我们丰富这条通知吧。

明白需求

在添加新的target之前,需要明白自己需要的是什么样的新特性,如果是想在右侧加个图片


或者加点交互的按钮


那么,你需要的是** UNNotificationServiceExtension**
如果你想要自定义通知的详情页面


那么,你需要的是** UNNotificationContentExtension**

创建代码

明白了自己的需求后,需要创建对应的Target


UNNotificationServiceExtension

创建了UNNotificationServiceExtension之后,会出现
NotificationService.h & NotificationService.m 两个文件
在.m文件中有两个默认的方法

//  用来处理通知内容,我们要做的工作主要在这个函数中完成
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler { }

//  如果等待超时,则会调用此方法
- (void)serviceExtensionTimeWillExpire {}

在didReceiveNotificationRequest函数中,有默认的几行代码,苹果很贴心的把我们需要操作的属性给提取出来,供我们自由发挥

//  用来处理通知内容,我们要做的工作主要在这个函数中完成
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
  self.contentHandler = contentHandler;
  self.bestAttemptContent = [request.content mutableCopy];

  //  调用self.contentHandler(self.bestAttemptContent)时既发出通知,我们需要在调用前设置好参数
  //  处理想要显示的内容,可修改的字段可以查看UNMutableNotificationContent下的属性
  self.bestAttemptContent.body = @"xxxx";
  //  添加交互按钮
  NSMutableArray *actionMutableArr = [[NSMutableArray alloc] initWithCapacity:1];
  UNNotificationAction * actionA  =[UNNotificationAction actionWithIdentifier:@"ActionA" title:@"不感兴趣" options:UNNotificationActionOptionAuthenticationRequired];

  UNNotificationAction * actionB = [UNNotificationAction actionWithIdentifier:@"ActionB" title:@"不感兴趣" options:UNNotificationActionOptionDestructive];

  UNNotificationAction * actionC = [UNNotificationAction actionWithIdentifier:@"ActionC" title:@"进去瞅瞅" options:UNNotificationActionOptionForeground];
  UNTextInputNotificationAction * actionD = [UNTextInputNotificationAction actionWithIdentifier:@"ActionD" title:@"作出评论" options:UNNotificationActionOptionDestructive textInputButtonTitle:@"send" textInputPlaceholder:@"say some thing"];

  [actionMutableArr addObjectsFromArray:@[actionA,actionB,actionC,actionD]];

  if (actionMutableArr.count) {
      UNNotificationCategory * notficationCategory = [UNNotificationCategory categoryWithIdentifier:@"myNotificationCategory" actions:actionMutableArr intentIdentifiers:@[@"ActionA",@"ActionB",@"ActionC",@"ActionD"] options:UNNotificationCategoryOptionCustomDismissAction];
    
      [[UNUserNotificationCenter currentNotificationCenter] setNotificationCategories:[NSSet setWithObject:notficationCategory]];
    
  }

  //  imgUrl中存放的是解析出的图片地址,通常我们放在usrInfo的对应字段中
  //  NSDictionary *dict =  self.bestAttemptContent.userInfo;
  NSString *imgUrl = @"http://img0.imgtn.bdimg.com/it/u=3219895124,3032445758&fm=200&gp=0.jpg"; //   dict[@"xxx"];

  if (!imgUrl || !imgUrl.length)
  {
      self.contentHandler(self.bestAttemptContent);
  }

  [self loadAttachmentForUrlString:imgUrl withType:@"png" completionHandle:^(UNNotificationAttachment *attach) {
    
      if (attach) {
          self.bestAttemptContent.attachments = [NSArray arrayWithObject:attach]; //  将下载的内容设置在附件中
      }
      self.contentHandler(self.bestAttemptContent);
    
  }];
}

下载附件的函数
- (void)loadAttachmentForUrlString:(NSString *)urlStr
withType:(NSString *)type
completionHandle:(void(^)(UNNotificationAttachment *attach))completionHandler{
__block UNNotificationAttachment *attachment = nil;
NSURL *attachmentURL = [NSURL URLWithString:urlStr];
NSString *fileExt = [self fileExtensionForMediaType:type];

  NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
  [[session downloadTaskWithURL:attachmentURL
            completionHandler:^(NSURL *temporaryFileLocation, NSURLResponse *response, NSError *error) {
                if (error != nil) {
                    NSLog(@"%@", error.localizedDescription);
                } else {
                    NSFileManager *fileManager = [NSFileManager defaultManager];
                    NSURL *localURL = [NSURL fileURLWithPath:[temporaryFileLocation.path stringByAppendingString:fileExt]];
                    [fileManager moveItemAtURL:temporaryFileLocation toURL:localURL error:&error];

                    NSError *attachmentError = nil;
                    attachment = [UNNotificationAttachment attachmentWithIdentifier:@"" URL:localURL options:nil error:&attachmentError];
                    if (attachmentError) {
                        NSLog(@"%@", attachmentError.localizedDescription);
                    }
                }
                 completionHandler(attachment);
           }] resume];
}

判断类型的函数
- (NSString *)fileExtensionForMediaType:(NSString *)type {
NSString *ext = type;
if ([type isEqualToString:@"image"]) {
ext = @"jpg";
}
if ([type isEqualToString:@"video"]) {
ext = @"mp4";
}
if ([type isEqualToString:@"audio"]) {
ext = @"mp3";
}
return [@"." stringByAppendingString:ext];
}
要添加"mutable-content": "1"的键值对
要添加"mutable-content": "1"的键值对
要添加"mutable-content": "1"的键值对
否则的话可能会拦截通知失败。有的第三方厂商会在可选配置中提供mutable-content的选项,按提示操作即可。

UNNotificationContentExtension

创建UNNotificationContentExtension之后,会出现


在plist文件中注意这样一个字段的值

这个值必须与服务器中category字段对应的值一致
接下来就是用storyboard画你自己的页面。
然后在.m实现文件中完成赋值
- (void)didReceiveNotification:(UNNotification *)notification {
UNNotificationContent *bestAttemptContent = notification.request.content;
// 从content中取出所需的数据
self.label.text = bestAttemptContent.body;
}

到这里编码的部分基本完成,我们需要生产安装包测试效果了。

生产安装文件

因为我们进行了应用扩展,所以需要申请新的Bundleid,需要注意的一点是,如果你的主应用的id为com.aaa.bbb的话,新申请的id必须为com.aaa.bbb.*。
将新制作的mobileprovision文件分别导入对应的target后,就可以生成安装文件了。

总结

本文用较少的语言介绍了自定义通知页面的流程。其实通知栏还有很大的可玩性,比如做个游戏,不过这些内容都不在文本的介绍范围内了。有兴趣的小伙伴们可以继续解锁通知栏的各种姿势,玩的开心。

参考:
iOS原生推送(APNS)进阶iOS10推送图片、视频、音乐
iOS10推送必看UNNotificationContentExtension

你可能感兴趣的:(iOS带图片的通知)