Tag: crash

Xcode | 如何符号化崩溃文本文件

我从Apple收到了文本格式的崩溃日志文件,以下步骤可帮助我对其进行符号化并轻松解决崩溃问题。 步骤1:建立一个名为Crash的资料夹 步骤2:将重命名为1.crash的崩溃文件并放入崩溃 步骤3:将您的.app文件复制到崩溃中的文件夹中。 步骤4:使用以下命令示例arm64查找崩溃中存在的体系结构 grep -A 1’Binary Images:’1.crash | 尾-1 步骤4:使用以下命令示例0x1000f4000查找起始地址 grep -A 1’Binary Images:’1.crash | 剪切-d“” -f1 | 尾-1 步骤5:在以下命令中输入地址并执行 xcrun atos -o MyApp.app/MyApp -arch arm64 -l 0x1000f4000 -f 1.崩溃> 1.sym.txt 步骤6:1.sym.txt包含象征性的崩溃 阅读更多: https://medium.com/@ankitkumargupta/learnings-converted-project-from-objective-c-to-swift-82fc98ee7204 https://medium.com/@ankitkumargupta/ios-how-i-handled-hardcoded-strings-of-images-storyboards-xibs-using-shell-scripts-c86712586529 https://medium.com/@ankitkumargupta/vector-images-in-ios-using-xcassets-2ddb102171b9 https://medium.com/@ankitkumargupta/xcode-add-build-phase-shell-script-without-cluttering-your-project-file-2de8aa3fe0ce

libobjc.A.dylib objc_msgSend – React Native iOS – 我如何阅读这个崩溃报告?

我的反应本机iOS应用程序随机与此崩溃,我不知道如何解释它。 任何想法是什么意思? 编辑:如果这是一个不好的问题,请让我知道我可以帮助这个,因为我不知道从哪里开始寻找。 这是一个随机的崩溃,一直在困扰着我一段时间。

Spritekit在进入后台时崩溃

所有的人,我一直在开发一个应用程序,其中我有一个SKMction对象的NSMutableDictionary。 SKAction是用来播放声音的。 这一切运作良好,除了…应用程序崩溃后进入后台堆栈跟踪: * thread #1: tid = 0x187d7, 0x3461b932 libGPUSupportMercury.dylib`gpus_ReturnNotPermittedKillClient + 10, queue = 'com.apple.spritekit.renderQueue, stop reason = EXC_BAD_ACCESS (code=1, address=0x1) frame #0: 0x3461b932 libGPUSupportMercury.dylib`gpus_ReturnNotPermittedKillClient + 10 frame #1: 0x3461c3d0 libGPUSupportMercury.dylib`gpusSubmitDataBuffers + 104 frame #2: 0x2eafc4a4 IMGSGX554GLDriver`SubmitPackets + 124 frame #3: 0x31f83cb0 GLEngine`gliPresentViewES + 168 frame #4: 0x31f8e136 OpenGLES`-[EAGLContext presentRenderbuffer:] + 62 frame #5: […]

IOS应用程序 – 在同一时间多个赛格崩溃(去其他赛格,而一个是animation)

虽然一个segue(如perforrmsegue)的animation正在进行,如果其他segue发生(如果用户在那时按其他button),然后应用程序崩溃。 这里解决了 UINavigationController上pop和pushViewController的问题。 我们还可以使用同样的trik还有其他解决scheme。 崩溃后我得到下面的堆栈。 (在[NSException initWithCoder:]处执行)。 0 CoreFoundation 0x2f9fbf4b __exceptionPreprocess 1 libobjc.A.dylib 0x39d8b6af objc_exception_throw 2 CoreFoundation 0x2f9fbe8d -[NSException initWithCoder:] 3 UIKit 0x3217a48f -[UIView(Internal) _addSubview:positioned:relativeTo:] 4 UIKit 0x3217a417 -[UIView(Hierarchy) addSubview:] 5 UIKit 0x32342b71 __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke 6 UIKit 0x321806e5 +[UIView(Animation) performWithoutAnimation:] 如果这个豁免是由于任何其他原因,那么请提及,因为我不知道有关赛格。