我在苹果开发面板设置推送通知和添加的代码我的应用程序。
它工作正常使用开发配置文件在手机上,但如果我使用分配(临时)配置文件,以便我可以给一些用户来测试它给出了一个错误和崩溃,日志提供了以下错误
码:
Thu Jun 25 22:22:35 unknown SpringBoard[729] <Warning>: *** Assertion failure in -[SBRemoteNotificationServer registerApplication:forEnvironment:withTypes:], /SourceCache/SpringBoard/SpringBoard-919.5/SBRemoteNotificationServer.m:633
Thu Jun 25 22:22:35 unknown SpringBoard[729] <Error>: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'no connection found for environment production'
我使用下面的代码在应用程序
码:
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
我不明白的是为什么他能很好利用发展概况但特设崩溃。
有谁知道什么会导致此?我试图改变很多东西,试图找到这个问题,但都一无所获。