iOS.Crash.OniOS8.WhenCall[popToRootViewController]
系统iOS 8.x, ARC。
CrashCase:
在UIViewController中有一个类型为UIScrollView的实例变量scrollView,
点击UIViewController中的某个按钮时调用"[self.navigationController popViewControllerAnimated:NO];",
在这之后该UIViewController的dealloc方法已被调用。在dealloc方法调用之后,scrollView其实还被系统View Tree
所持有,scrollView会访问其delegate,此时发生Crash。(UIScrollView的delegate)
在Debug时,
console会输出:"-[DSViewController respondsToSelector:]: message sent to deallocated instance 0x7ff3f6291160"
stack如图:
看第二frame: [UIScrollView _getDelegateZoomView], 执行停在line 18。
UIKit`-[UIScrollView _getDelegateZoomView]:
0x110dd48cd: pushq %rbp
0x110dd48ce: movq %rsp, %rbp
0x110dd48d1: pushq %r15
0x110dd48d3: pushq %r14
0x110dd48d5: pushq %rbx
0x110dd48d6: pushq %rax
0x110dd48d7: movq %rdi, %r14
0x110dd48da: movq 0xd344ef(%rip), %rax ; UIScrollView._zoomView
0x110dd48e1: movq (%r14,%rax), %rbx
0x110dd48e5: testq %rbx, %rbx
0x110dd48e8: jne 0x110dd497b ; -[UIScrollView _getDelegateZoomView] + 174
0x110dd48ee: movq 0xd344c3(%rip), %r15 ; UIScrollView._delegate
0x110dd48f5: movq (%r14,%r15), %rdi
0x110dd48f9: movq 0xd08228(%rip), %rdx ; "viewForZoomingInScrollView:"
0x110dd4900: movq 0xd02df9(%rip), %rsi ; "respondsToSelector:"
0x110dd4907: callq *0xac2783(%rip) ; (void *)0x00000001124b8000: objc_msgSend
0x110dd490d: xorl %ebx, %ebx
0x110dd490f: testb %al, %al
0x110dd4911: je 0x110dd497b ; -[UIScrollView _getDelegateZoomView] + 174
0x110dd4913: movq (%r14,%r15), %rdi
0x110dd4917: movq 0xd0820a(%rip), %rsi ; "viewForZoomingInScrollView:"
0x110dd491e: movq %r14, %rdx
0x110dd4921: callq *0xac2769(%rip) ; (void *)0x00000001124b8000: objc_msgSend
0x110dd4927: movq %rax, %rbx
0x110dd492a: leaq 0xd6bcdb(%rip), %rax ; _UIApplicationLinkedOnVersion
0x110dd4931: movl (%rax), %eax
0x110dd4933: testl %eax, %eax
0x110dd4935: je 0x110dd4941 ; -[UIScrollView _getDelegateZoomView] + 116
0x110dd4937: cmpl $0x4ffff, %eax
0x110dd493c: seta %al
0x110dd493f: jmp 0x110dd494b ; -[UIScrollView _getDelegateZoomView] + 126
0x110dd4941: movl $0x50000, %edi
0x110dd4946: callq 0x110d4b41f ; _UIApplicationLinkedOnOrAfter
0x110dd494b: testb %al, %al
0x110dd494d: je 0x110dd497b ; -[UIScrollView _getDelegateZoomView] + 174
0x110dd494f: cmpq %r14, %rbx
0x110dd4952: jne 0x110dd497b ; -[UIScrollView _getDelegateZoomView] + 174
0x110dd4954: movq 0xd2e5ad(%rip), %rdi ; (void *)0x00000001109c2458: NSException
0x110dd495b: movq 0xac1866(%rip), %rax ; (void *)0x000000011098aa10: NSGenericException
0x110dd4962: movq (%rax), %rdx
0x110dd4965: movq 0xd0487c(%rip), %rsi ; "raise:format:"
0x110dd496c: leaq 0xb06a3d(%rip), %rcx ; @"The view returned from viewForZoomingInScrollView: must be a subview of the scroll view. It can not be the scroll view itself."
0x110dd4973: xorl %eax, %eax
0x110dd4975: callq *0xac2715(%rip) ; (void *)0x00000001124b8000: objc_msgSend
0x110dd497b: movq %rbx, %rax
0x110dd497e: addq $0x8, %rsp
0x110dd4982: popq %rbx
0x110dd4983: popq %r14
0x110dd4985: popq %r15
0x110dd4987: popq %rbp
0x110dd4988: retq
解决方法:
在DSViewController的dealloc中将添加: "scrollView.delegate = nil;"
Q1: 在iOS 7.x中没有Crash,这是不是iOS 8.x的系统bug?
Reference
1. UIScrollView internal consistency crash
http://stackoverflow.com/questions/26103756/uiscrollview-internal-consistency-crash
2. popToRootViewController crashes when tableView is still scrolling
http://stackoverflow.com/questions/26060727/poptorootviewcontroller-crashes-when-tableview-is-still-scrolling
iOS.Crash.OniOS8.WhenCall[popToRootViewController]的更多相关文章
- iOS --------Crash 分析(一)
iOS Crash 分析(文一)- 开始 1. 名词解释 1. UUID 一个字符串,在iOS上每个可执行文件或库文件都包含至少一个UUID.目的是为了唯一识别这个文件. 2. dwarfdump 苹 ...
- iOS: Crash文件解析(一)
iOS Crash文件的解析(一) 开发程序的过程中不管我们已经如何小心,总是会在不经意间遇到程序闪退.脑补一下当你在一群人面前自信的拿着你的App做功能预演的时候,流畅的操作被无情地Crash打断. ...
- 漫谈iOS Crash收集框架
漫谈iOS Crash收集框架 Crash日志收集 为了能够第一时间发现程序问题,应用程序需要实现自己的崩溃日志收集服务,成熟的开源项目很多,如 KSCrash,plcrashreporter,C ...
- IOS Crash捕获
IOS Crash ,就两种情况:一种是异常,另一种是中断[信号量]. #include <libkern/OSAtomic.h> #include <execinfo.h> ...
- iOS Crash文件的解析
iOS Crash文件的解析 开发程序的过程中不管我们已经如何小心,总是会在不经意间遇到程序闪退.脑补一下当你在一群人面前自信的拿着你的App做功能预演的时候,流畅的操作被无情地Crash打断.联想起 ...
- iOS crash日志分析
iOS crash日志分析 一. 寻找crash文件:手机崩溃后的ips或者crash文件(ips文件可以直接修改成crash文件,直接改后缀名就可以了),这里说下如何拿到crash文件 1. 把运行 ...
- 了解和分析iOS Crash
WeTest 导读 北京时间凌晨一点,苹果一年一度的发布会如期而至.新机型的发布又会让适配相关的同学忙上一阵子啦,并且iOS Crash的问题始终伴随着移动开发者.本文将从三个阶段,由浅入深的介绍如何 ...
- iOS Crash 分析 符号化崩溃日志
参考: http://blog.csdn.net/diyagoanyhacker/article/details/41247367 http://blog.csdn.net/diyagoanyhack ...
- iOS crash 崩溃问题的追踪方法
http://www.cnblogs.com/easonoutlook/archive/2012/12/27/2835884.html iOS crash 崩溃问题的追踪方法 在调试程序的时候,总是碰 ...
随机推荐
- spring boot 中使用拦截器
第一步: 第二步:
- 关于ubuntu14.04,忘记root密码解决方案(经测试,内核3.13和4.2可行)。
网上已经有很多方案啦,我这里就不画蛇添足,直接上链接: http://jingyan.baidu.com/article/c843ea0b9e851077931e4aea.html 注意,有些机子没有 ...
- mysql查找某连续字段中断的编号
查询dj_pxlb表中zwh 空缺的值 select model2.zwh-1 as kqzwh from (select model1.zwh from dj_pxlb as model1 wher ...
- 一个查询指定错误记录数据表错误记录条数的shell脚本
#!/bin/bash #author:skycheng #parameters db_user=dbuser db_pass=dbpass db_host=xxx.xxx.xxx.xxx datab ...
- linux suse 同步时间
ntpdate 210.72.145.44 ip为中国(国家授时中心)
- 解题6(OutputNMin)
题目描述 输入n个整数,输出其中最小的k个. 详细描述: 接口说明 原型: bool GetMinK(unsignedint uiInputNum, int * pInputArray, unsign ...
- SpringCloud报错:Caused by: org.springframework.context.ApplicationContextException: Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean.
今天启动用eureka的服务消费者时,一直出现问题. SpringCloud报错: Caused by: org.springframework.context.ApplicationContextE ...
- mysql5.6 基于Binlog ROW记录方式进行数据恢复(无备份)
数据库配置注意事项 /etc/my.cnf 必须要开户binlog支持,字符集要求 是utf8 binlog类型为row server-id=121 log_bin=/home/mysqllog bi ...
- 开发增强现实(AR)教程——识别图的那些坑
第一期:Vuforia识别图的那些坑 一.Vuforia的图片识别机制 大学时学习的是计算机科学的数字媒体方向,图像处理粗略接触过,对于Vuforia的图片识别机制,只能大概讲一下步骤和猜想,无法给出 ...
- Genymotion 模拟器上网出现 net::ERR_NAME_NOT_RESOLVED
Genymotion 模拟器在公司网络安装的,然后启动能正常上网,把笔记本带回家,网络变化了,再使用模拟器 上网显示: (net::ERR_NAME_NOT_RESOLVED) 各种百度,最后用如下方 ...