ios - xCode 在运行应用程序时失去与设备的连接

标签 ios objective-c iphone xcode

我一直在构建一个 iOS 应用程序,并在模拟器和我的 iPad 上对其进行了测试。一切都在完美地工作,直到-
当我最近将代码添加到我的 AppDelegate.m 文件中以注册推送通知时。现在,当我尝试在设备上运行该应用程序时,该应用程序会在初始屏幕上停留一段时间,然后 xCode 出现以下错误。

process launch failed: timed out waiting for app to launch

这是我添加的代码,以防万一:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
 // Override point for customization after application launch.

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 80000
   if ([[UIApplication sharedApplication]respondsToSelector:@selector(registerUserNotificationSettings:)])
   {
      UIUserNotificationType userNTypes = (UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound);

      UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:userNTypes categories:nil];

        NSLog(@"sherikkum registering 8.xx...");

      [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
      [[UIApplication sharedApplication] registerForRemoteNotifications];
   }
   else
   {
      [[UIApplication sharedApplication] registerForRemoteNotificationTypes: 
      (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
}
#else
   [[UIApplication sharedApplication] registerForRemoteNotificationTypes:
   (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];

#endif

return YES;
}

- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
  NSLog(@"My token is: %@", deviceToken);

  //I added this alert coz i couldnt view NSLogs - coz my xcode wont connect
  UIAlertView *tokenalert = [[UIAlertView alloc] initWithTitle:@"Token"
                                                     message:[NSString stringWithFormat:@"%@",deviceToken]
                                                    delegate:nil
                                           cancelButtonTitle:@"OK"
                                           otherButtonTitles:nil, nil];
  [tokenalert show];
}

- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
   NSLog(@"Failed to get token, error: %@", error);
}

谢谢

最佳答案

您在运行应用时可能使用的是分发证书而不是开发者证书。在 Target => Build Settings=> Code Signing 中更改它。

enter image description here

如果您使用的是从分发证书创建的配置文件,您的代码将不会在从 xcode 运行的设备上运行。您需要使用从开发证书创建的配置文件。有关配置文件和证书的更多详细信息,请阅读 Apple's Documentation.

关于ios - xCode 在运行应用程序时失去与设备的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28229824/

相关文章:

ios - 使用Grand Central Dispatch将URL字符串从JSON转换为ImageView的图像

ios - iOS 8 Today 扩展中的拖动手势

objective-c - 在 Objective C 中使用 isKindOfClass 的性能损失是多少?

iphone - 改进/优化 CAEmitterLayer 动画的性能(沿路径发射?)

ios - PFObject 子类作为另一个 PFObject 子类中的属性

iphone - 苹果错误 LLVM 3.1

ios - NSTimer Press "Start"Again then Cannot "Stop"

ios - 如何在滚动时停止在 Collection View 中重新加载服务器图像?

ios - 切换选择多个/单个 UITableView

ios - 应用程序在模拟器中完美运行,但在 iPod Touch 上运行时出现 "Undefined Symbols"错误