iphone - 应用程序在 [TestFlight takeOff : @""] in iOS 6. 1.2 上崩溃

标签 iphone ios testflight

我已将 TestFlight SDK 集成到我的 iOS 应用程序中。在 iOS 6.1.2 中,有时应用程序会在 TestFlight 的 -takeOff: 方法中首次启动时崩溃。

  - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:  (NSDictionary *)launchOptions
{

#ifdef TESTING
    [TestFlight takeOff:@"MY_TESTFLIGHT_TEAM_TOKEN"];
    [TestFlight setDeviceIdentifier:[[UIDevice currentDevice] uniqueIdentifier]];
#endif

// Override point for customization after application launch.
ProductListViewController *products=[[ProductListViewController alloc] initWithNibName:@"ProductListViewController" bundle:nil];
UINavigationController *navigationController=[[UINavigationController alloc] initWithRootViewController:products];
[products release];

navigationController.toolbarHidden = YES;
navigationController.navigationBarHidden = YES;

self.rootViewController = navigationController;
[self.window setRootViewController:rootViewController];

[navigationController release];

[self.window makeKeyAndVisible];

return YES;
}

非常感谢任何帮助。

谢谢

最佳答案

这是 Testflight SDK 中的错误。他们要求您更新到最新的测试版。

参见 iOS exception EXC_GUARD

关于iphone - 应用程序在 [TestFlight takeOff : @""] in iOS 6. 1.2 上崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15359057/

相关文章:

iphone - 有时不调用加速度计委托(delegate)方法

android - 将 API 请求限制为仅我自己的移动应用程序

ios - 核心数据未保存在分发版本中

ios - Testflight 是否不再支持新版本的应用内通知?

iphone - 使用 setFrame 更改位置后 UIButton 不响应触摸事件

iphone - iOS 4.2 不允许 MKMapView 在另一个线程中初始化

iphone - 将图像添加到自定义单元格 subview

ios - DetailTextLabel 不显示在 iOS 8 xcode 6

ios - deselectRowAtIndexPath 什么都不做

ios - Geofence didEnterRegion 和 didExitRegion 不会在 Testflight beta 应用程序上调用。我错过了什么?