由于我今天提交了我的应用程序的新版本,我遇到了令人印象深刻的崩溃事件,主要集中在iPhone 7.1设备版本8.4,它们似乎都按照相同的顺序进行了标记:我的代码中找到的最后一部分是show in以下代码:
- (void)connectionClosed {
NSError* err;
[[factory sharedFactory] clearMapArchivesWithError:&err];
UIAlertView *message=[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Crash report submitted", nil) message:NSLocalizedString(@"Notwithstanding the report about the recent crash of the app has been reported to the developer, if possible please provide him with more information about it for a more timely resolution; we thank you and apologize for the problem", nil) delegate:self cancelButtonTitle:nil otherButtonTitles:NSLocalizedString(@"Dismiss", nil), nil];
[message show];
self.waitForCrashReportToSend = NO;
}
然后它在我自己的代码中没有的命令上传递两次:
$ symbolicate 0x1000d8000 0x00000001001d63a4 - [MPVersion isEqual:](inArrivoHD)+ 544 $ symbolicate 0x1000d8000 0x00000001001d6304 - [MPVersion isEqual:](在inArrivoHD中)+ 384
最后崩溃了。 它可能是什么?
答案 0 :(得分:0)
奇怪的是我无法评论该条目,这是回复: 我使用MumbleKit,MumbleForIOS应用程序的某些类包装有限。目前,我删除了对库的所有引用,直到执行实际调用,以阻止应用程序正常使用中的任何问题。然而今天我不再有任何类型的崩溃报告,崩溃次数的突然下降现在集中在以下内容: 来自@callee_owned的重新提取thunk助手(@owned [Swift.AnyObject] !, @owned ObjectiveC.NSError!) - > (@unowned())稍微不像前一个那么模糊。