【发布时间】:2015-09-24 16:52:27
【问题描述】:
我的代码在大约 3 天前运行良好。我尝试回到一个更早的提交,它工作了 100%,但现在它仍然与 exc_bad 一起崩溃。 只有在设备上运行应用程序时才会发生崩溃,如果我在模拟器上运行应用程序或使用仪器在设备上运行应用程序,它运行得非常好。当我更改我的 google api 密钥时,它说“您可能无权使用此 api 密钥”但不再崩溃。
该应用仅在通过 xcode 在设备上运行应用时崩溃。稍后在设备上运行相同版本而不连接到 xcode 时,它可以正常工作。
我不确定我可以在此处添加哪些信息来帮助调试问题。我最近将 xcode 更新到 6.4 并使用最新更新更新了 OSX。
我使用的是google 1.10.1 sdk版本,使用CocoaPods安装
我用来添加地图的代码:
self.mapView = [GMSMapView mapWithFrame:self.view.bounds camera:camera];
self.mapView.myLocationEnabled = YES;
self.mapView.settings.myLocationButton = YES;
self.mapView.delegate = self;
[self.mapView addObserver:self
forKeyPath:@"myLocation"
options:NSKeyValueObservingOptionNew
context:NULL];
[self.view insertSubview:self.mapView atIndex:1];
错误本身在 code=1、code=2 和 code=257 之间变化。我尝试使用情节提要而不是代码添加 GMSMapView。我已经尝试安装旧版本的 xcode 并再次运行,但它并没有改变任何东西。
如果我注释掉插入子视图行,该应用程序不会崩溃。我曾尝试运行僵尸仪器工具,但当我使用仪器运行时,该应用程序运行良好。
#0 0x0000000100c5dc34 in EAGLContext_renderbufferStorageFromDrawable(EAGLContext*, objc_selector*, unsigned long, id<EAGLDrawable>) ()
#1 0x00000001002404c0 in gmscore::renderer::ios::GLRenderTarget::CreateFramebuffer() ()
#2 0x00000001002403cc in gmscore::renderer::ios::GLRenderTarget::FrameStart() ()
#3 0x00000001002e7af4 in gmscore::renderer::EntityRenderer::Draw(bool) ()
#4 0x00000001002516f4 in -[GMSPhoenixRenderer drawIfNeeded] ()
#5 0x00000001002329a0 in -[GMSEntityRendererView draw] ()
#6 0x000000010028dc74 in -[GMSDisplayLink displayLinkFired:] ()
#7 0x0000000100c5ca9c in -[DYDisplayLinkInterposer forwardDisplayLinkCallback:] ()
#8 0x00000001887f629c in CA::Display::DisplayLinkItem::dispatch() ()
#9 0x00000001887f6134 in CA::Display::DisplayLink::dispatch_items(unsigned long long, unsigned long long, unsigned long long) ()
#10 0x00000001855d1470 in IODispatchCalloutFromCFMessage ()
#11 0x00000001843c2dc4 in __CFMachPortPerform ()
#12 0x00000001843d7a54 in __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ ()
#13 0x00000001843d79b4 in __CFRunLoopDoSource1 ()
#14 0x00000001843d5934 in __CFRunLoopRun ()
#15 0x00000001843012d4 in CFRunLoopRunSpecific ()
#16 0x000000018db1f6fc in GSEventRunModal ()
#17 0x0000000188ec6fac in UIApplicationMain ()
#18 0x000000010002d794 in main at /Users/yoavschwartz/Documents/donkey_republic_ios/DonkeyRepublic/DonkeyRepublic/main.m:14
#19 0x0000000196272a08 in start ()
重新启动计算机/设备时,此问题似乎已自行解决,现在再次弹出。我真的不明白这是怎么回事。
【问题讨论】:
-
检查所有关于谷歌地图的操作是否在主线程上处理?如果没有,则继续主线程并检查
-
我有同样的问题,我在 iPhone 4s 上测试过 8.3(DID 崩溃),iPhone 6 上 8.3 和 8.4(没有崩溃)。您的设备运行的是哪个 iOS 版本?
-
iphone 6 和 iphone 5 8.4。
-
很奇怪,我有一个 8.4 的 iPhone 6 并且工作正常
-
我已经设法通过删除 xcode、回到 xcode 6.3.2、重新启动设备并重新提取 repo 来使其工作。基本上我只是试图重新启动一切
标签: ios objective-c xcode google-maps