我们正在开发一个 IOS 应用程序,我们想要实现推送通知,我浏览了苹果文档,并要求我的团队代理在 iOS 开发中心启用推送通知,他们似乎做到了,现在启用了。我已经在我的应用程序中注册了推送通知,如下所示...
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
当我运行应用程序时,didFailToRegisterForRemoteNotificationsWithError 被调用,我无法预测问题,我还能对认证做些什么。
谢谢...