我用了
- (void)application:(UIApplication *)application
didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
处理推送注册期间发生的异常。
我想针对不同的错误显示自定义消息。
到目前为止,我发现人们使用error.code来确定错误类型
例如:
error.code = 3010 // is for the iPhone Simulator
error.code = 3000 // Failed to get token
我想知道 Apple 在哪里记录这些错误代码,因为我想涵盖所有错误类型
提前致谢