友盟-推送-IOS-IOS无法验证设备的有效性?(设备描述显示红色)
发布网友
发布时间:2022-03-31 01:52
我来回答
共1个回答
热心网友
时间:2022-03-31 03:21
先检查是否正确的填写了推送的appkey,统计的方法为MobClick startWithAppkey;推送的方法为UMessage startWithAppkey 是两个不同的方法。
如果还是不行IOS首先用以下代码判断有木有错误:
didFailToRegisterForRemoteNotificationsWithError:(NSError *)err
{
NSString *error_str = [NSString stringWithFormat: @"%@", err];
NSLog(@"Failed to get token, error:%@", error_str);
}
同时:
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
[UMessage registerDeviceToken:deviceToken];
NSLog(@"didRegisterForRemoteNotificationsWithDeviceToken success");
NSLog(@"%@",[[[[deviceToken description] stringByReplacingOccurrencesOfString: @"<" withString: @""]
stringByReplacingOccurrencesOfString: @">" withString: @""]
stringByReplacingOccurrencesOfString: @" " withString: @""]);
}
其中[UMessage registerDeviceToken:deviceToken];不能注释掉。
如果还是不行的话,可以再次对app进行卸载重装。