我们正在开发一个IOS应用程序,我们想实现PUSH NOTIFICATION,我已经通过了苹果文档,并要求我的团队代理在iOS开发中心启用推送通知,他们似乎已经开始了,现在启用它.我在我的申请中注册了下面的推送通知......
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
Run Code Online (Sandbox Code Playgroud)
当我运行应用程序时,调用了didFailToRegisterForRemoteNotificationsWithError,我无法预测问题,还有什么我可以做的认证.
谢谢...