如果收到推送时, App 在前台运行,那么:
//UNUserNotificationCenterDelegate
-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler{
completionHandler(UNNotificationPresentationOptionBadge|UNNotificationPresentationOptionSound|UNNotificationPresentationOptionAlert);
}
iOS 使用推送需要 配置推送证书,如果你配过了,仍然收不到推送,建议再配一遍。笔者曾经多次远程控制手把手给其他开发者配置证书,结果全都重新配一遍就能收到推送了。
Xcode 8 这里打开。
推送时开发环境、发布环境一一对应。环境不对应,收不到。
要在 Apple Developer Center 把你的测试设备加入到 Device 里面。
一台手机能收到,另一台不能收到。要把你的另一台测试设备也加入到 Apple Deveice 里面。。。
高峰时段你再等几秒就收到了。
Apple 服务器宕机了,并不是所有的设备都收不到推送了,而是新的设备无法成功注册推送服务了。
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
}
在该方法中,无法返回有效的 deviceToken 值了。等两天就好了。
打包,安装,测试。即可。
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
推送时 badge 参数设置: +n 自增、-n 自减、 n 固定值。 自增、自减一般第三方推送服务支持才有。
Background Remote Notification
App 杀死啥代码都不能执行。 iOS 10 你可以试试 Notification Service Extension ,详情见 这篇文章 的 Service Extension 部分。
哥哥手机左侧静音键麻烦拨上来。
推送时 sound 字段设置为: default
1.声音文件拖拽并拷贝并生成索引到工程任意位置(在 Xcode 里拖拽) 2.推送时 sound 字段设置为: name.mp3 。需要名字后缀完全一样。
拖拽文件时没有选择拷贝,连线测试有声音,拔线没声音,声音文件在电脑里,拔线后缺失。从工程目录删除该文件,再重新添加再 build 。
要点推送横幅、通知中心条目进入 App 才能收到。
解决方法:再发一条透传消息。只处理消息,不处理推送。不论点哪里进的 App ,都能保证该事件被处理。
iOS 9 的 bug 。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
NSDictionary *remoteNotification = [launchOptions objectForKey: UIApplicationLaunchOptionsRemoteNotificationKey];
}
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
}
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
}
//UNUserNotificationCenterDelegate
- (void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler{
NSDictionary *userInfo = response.notification.request.content.userInfo;
}
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
推送时 badge 参数为 0 ,再调用 Q 22 导致通知中心没有发生变化,此时应设为 1 ,再设为 0 :
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:1];
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
先获取用户推送权限设置情况:
// iOS 8 before
UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
// iOS 8~9
UIUserNotificationSettings *settings = [[UIApplication sharedApplication] currentUserNotificationSettings];
UIUserNotificationType type = settings.types;
// iOS 10
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
[center getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {
}
如果没开,跳转到 设置 - yourApp 页面让用户设置:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
// iOS 8 before
UIRemoteNotificationType type = UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound;
[application registerForRemoteNotificationTypes:type];
// iOS 8~9
UIUserNotificationType type = UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound;
UIUserNotificationSettings *setting = [UIUserNotificationSettings settingsForTypes:type categories:nil];
[application registerUserNotificationSettings:setting];
// iOS 10
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
[center requestAuthorizationWithOptions:(UNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert) completionHandler:^(BOOL granted, NSError * _Nullable error) {
if (!error) {
NSLog(@"request authorization succeeded!");
}
}];
作者: pikacode - 极光( JPush 为极光团队账号,欢迎关注)
知乎专栏:极光日报
1
echohanyu 2017-03-07 12:23:05 +08:00
我就知道...是极光推送的...
|