iOS 推送,删除指定推送消息或者撤回某条推送
程序员文章站
2022-05-28 09:49:48
...
iOS 推送,删除指定推送消息
远程推送经常会出现收到重复推送的问题,或者想删除某条推送消息的问题,本文将详细说明
静默推送
- 在 iOS10 之后 Apple 新增了静默推送的功能,使 App 可以在收到推送之后执行一段代码,具体能执行多长时间没有测试过
- 服务端往苹果 APNS 发送如下消息内容可以**静默推送能力,使 App 具有收到推送执行相关功能
{aps:{"content-available":1}}
App 推送处理
- App 在收到推送之后使用新的推送框架发送本地推送
- 根据某个属性,结合之前发送的本地推送的 identifier 可以做到消息拦截或者删除某条消息的逻辑
- Demo
#import <UserNotifications/UserNotifications.h>
// userInfo 是远程推送的字段, cancel 这个属性表示是否删除莫条推送消息
-(void)postLocalNotification:(NSDictionary *)userInfo{
UNMutableNotificationContent * content = [[UNMutableNotificationContent alloc]init];
content.badge = @(123);
content.body = @"yangyudong,nihao,hahaha";
if ([userInfo[@"aps"][@"cancel"] integerValue]==1) {
[[UNUserNotificationCenter currentNotificationCenter] removeDeliveredNotificationsWithIdentifiers:@[@"Hello123"]];
completionHandler(UIBackgroundFetchResultNoData);
return;
}
content.userInfo = userInfo;
UNNotificationRequest * request = [UNNotificationRequest requestWithIdentifier:@"Hello123" content:content trigger:nil];
[[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
}];
completionHandler(UIBackgroundFetchResultNewData);
}
远程推送测试工具
- PushMeBy
上一篇: springMVC远程接口开发