我在iOS7中遇到推送通知问题.
我已经为iOS6开发了一个应用程序,并且推送通知非常有效.但是,当我将该应用程序放在iOS7设备中时,它不会运行.
但是很奇怪的事情发生了.如果我使用开发键,我的iOS7设备可以接收推送,但是使用生产键,它不能.
我可以获得我的devide令牌,但它无法接收任何东西.
任何的想法?
这是我的代码:
Appdelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // PUSH-CODE [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)]; .... } // PUSH-CODE - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDevicetoken:(NSData *)devicetoken { Nsstring *token = [[devicetoken description] stringByTrimmingCharactersInSet: [NSCharacterSet characterSetWithCharactersInString:@"<>"]]; token = [token stringByReplacingOccurrencesOfString:@" " withString:@""]; NSLog(@"Token: %@",token); [[NSUserDefaults standardUserDefaults] setobject:token forKey:@"devicetoken"]; [[NSUserDefaults standardUserDefaults] synchronize]; } - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error { NSLog(@"Failed to get token,error: %@",error); }
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。