使用XCode 11.4在模拟器中测试远程通知表示不支持

时间:2020-04-04 00:54:36

标签: ios xcode remote-notifications xcode11.4

我一直在研究使用模拟器测试远程通知,并且知道从Xcode 11.4 beta开始,我们应该能够做到这一点。

我要测试的方式是:

  1. 关于在didFinishLaunchingWithOptions内部启动的应用程序,我正在做:

[[UIApplication sharedApplication] registerForRemoteNotifications];

  1. 我添加了如下回调:
- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
    NSLog( @"Succeeded at registering for remote notifications" );
    return;
 }

- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
{
    NSLog( @"Failed to register for remote notifications" );
    return;

}

我在didFailToRegisterForRemoteNotificationsWithError中遇到了断点,错误是: 模拟器中不支持远程通知

有办法解决吗?我是否误解了XCode 11.4支持的功能?

0 个答案:

没有答案