iOS崩溃(crash)案例分析

本文Crash Demo
目录:
1.数组越界
2.数组、字典插入空值
3.block为空
4.调用未实现方法(unrecognized selector)
5.NSNotification crash
6.NSString crash
7.KVO crash
8.UITableView滚动越界 crash
9.NSAttributedString初始化为空值 crash

1.数组越界

示例:

NSArray *array = @[@"0",@"1"];
NSLog(@"array:%@",array[2]);

crash提示:

 *** Terminating app due to uncaught exception 'NSRangeException', 
reason: '*** -[__NSArrayI objectAtIndexedSubscript:]: index 2 beyond bounds [0 .. 1]'

原因:
数组只有两个元素,要访问第三个元素,超出数组的内存地址,所以系统会crash。

解决办法:

//判断数组元素个数,保证数组不越界
    NSArray *array = @[@"0",@"1"];
    if (array.count <= 2) {
        return;
    }
    NSLog(@"arrayOutRange:%@",array[2]);


2.数组、字典插入空值

示例2.1:

NSMutableArray *array = [NSMutableArray array];
NSString *nilString = nil;
[array addObject:nilString];
NSLog(@"arrayInsertNil");

crash提示2.1:

 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil' *** 

原因:
数组不能插入空值,会产生crash。
解决办法:

    if (nilString != nil) {
        [array addObject:nilString];
    }

示例2.2:

    NSMutableDictionary *dict = [NSMutableDictionary dictionary];
    NSString *nilString = nil;
    [dict setObject:@"dict" forKey:nilString];//object为空
//    [dict setObject:nilString forKey:@"dict"];//key为空
//    [dict objectForKey:nilString];//key为空
    NSLog(@"dictionaryInsertNil");

crash提示2.2:

 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: '*** -[__NSDictionaryM setObject:forKey:]: object cannot be nil (key: dict)'

原因:
字典的key和object都不能为空值,会产生crash。
解决办法:

    if (nilString != nil) {
       [dict setObject:@"dict" forKey:nilString];
    }


3.block为空

示例:

void(^block)(void) = nil;
block();

crash提示:

Thread 1: EXC_BAD_ACCESS (code=1, address=0x10)

原因:
当block为空时,访问错误地址,产生crash。
解决办法:

if (block) {
    block()
}


4.调用未实现方法(unrecognized selector)

示例4.1:

[self performSelector:@selector(methodXXX)];

crash提示4.1:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: '-[ViewController method]: unrecognized selector sent to instance

原因:
由于self没有实现methodXXX方法,所以会产生crash
解决办法:

    if ([self respondsToSelector:@selector(method)]) {
            [self performSelector:@selector(method)];
    }

示例4.2:

//ViewController.h
@protocol ViewControllerDelegate <NSObject>

- (void)vcDeletegate;

@end

@interface ViewController : UIViewController

@property (nonatomic, weak)id<ViewControllerDelegate> deletegate;

@end

//ViewController.m
[self.deletegate vcDeletegate];

crash提示4.2:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: '-[ViewController vcDeletegate]: unrecognized selector sent to instance

原因:
没有实现代理方法,所以导致crash。
解决办法:

    if ([self.delegate respondsToSelector:@selector(vcDeletegate)]) {
            [self.deletegate vcDeletegate];
    }


5. NSNotification crash

示例:

//  XMNotoficationObject.m
- (instancetype)init
{
    self = [super init];
    if (self != nil) {
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notification) name:@"XMNotoficationObject" object:nil];
    }
    return self;
}

- (void)notification
{
    NSLog(@"notification");
}

//  ViewController.m

- (void)notificationCrash
{
    XMNotoficationObject *xmObject = [[XMNotoficationObject alloc] init];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"XMNotoficationObject" object:nil];
}

crash提示:

Thread 1: EXC_BAD_ACCESS (code=1, address=0x8)

原因:
当一个对象添加了notification之后,如果dealloc的时候,仍然持有notification,就会出现NSNotification类型的crash。

所幸的是,苹果在iOS9之后专门针对于这种情况做了处理,所以在iOS9之后,即使开发者没有移除observer,Notification crash也不会再产生了。
解决办法:

//  XMNotoficationObject.m
- (void)dealloc
{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}


6.NSString crash

示例:

    NSRange range = NSMakeRange(2, 1);
    NSString *string = @"01";
    NSLog(@"NSString:%@",[string substringWithRange:range]);

crash提示:

*** Terminating app due to uncaught exception 'NSRangeException', 
reason: '-[__NSCFConstantString substringWithRange:]: Range {2, 1} out of bounds; string length 2'

原因:
访问范围超出string的长度,地址越界。
解决办法:

保证range不能越界,可以使用range.location和range.length判断


7.KVO crash

示例:

//  XMKvoObjectA.h
@property (nonatomic, strong) XMKvoObjectB * objectB;
//  XMKvoObjectA.m
- (instancetype)init
{
    self = [super init];
    if (self != nil) {
        [self addObserver:self.objectB forKeyPath:@"num" options:NSKeyValueObservingOptionNew context:nil];
    }
    return self;
}

// KVO监听执行
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
    NSLog(@"observeValueForKeyPath:%@",object);
}

//  XMKvoObjectB.h
@property (nonatomic, assign) NSInteger num;

//  ViewController.m
@property (nonatomic, strong) XMKvoObjectB * objectB;
- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    self.objectB.num = 1;
}
- (void)kvoCrash
{
    XMKvoObjectA *kvoObjectA = [[XMKvoObjectA alloc] init];
    kvoObjectA.objectB = self.objectB;
}

crash提示:

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', 
reason: 'An instance 0x7d1a0130 of class XMKvoObjectA was deallocated while key value observers were still registered with it.
 Current observation info: <NSKeyValueObservationInfo 0x7d1a6750> (
<NSKeyValueObservance 0x7d1a7670: Observer: 0x0, Key path: num, Options: <New: YES, Old: NO, Prior: NO> Context: 0x0, Property: 0x7d1a6710>
)'

原因:
KVO的被观察者(XMKvoObjectA)dealloc时仍然注册着KVO导致的crash

同时KVO重复添加观察者(addObserver)或重复移除观察者(removeObserver)也会导致的crash。
解决办法:

参看faceBook的KVOController实现


8.UITableView滚动越界

示例:

- (void)tableviewScrollOutRange
{
    [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:2] atScrollPosition:UITableViewScrollPositionMiddle animated:NO];
}


#pragma tableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [UITableViewCell new];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 44.f;
}

- (UITableView *)tableView
{
    if (_tableView == nil) {
        _tableView = [[UITableView alloc] initWithFrame:self.view.bounds];
        _tableView.dataSource = self;
        _tableView.delegate = self;
        [self.view addSubview:_tableView];
    }
    return _tableView;
}

crash提示:

*** Terminating app due to uncaught exception 'NSRangeException', 
reason: '-[UITableView _contentOffsetForScrollingToRowAtIndexPath:atScrollPosition:]: section (2) beyond bounds (1).'

原因:
tableview只有一个section和一个row,但是要滚动到第2个section,超出range了。
解决办法:

if (self.tableView.numberOfSections > 2 && [self.tableView numberOfRowsInSection:2] > 1) {
    [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:2] atScrollPosition:UITableViewScrollPositionMiddle animated:NO];
}


9.NSAttributedString初始化为空值

示例:

NSString *nilString = nil;
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:nilString];
NSLog(@"attributedString:%@",attributedString);

crash提示:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', 
reason: 'NSConcreteAttributedString initWithString:: nil value'

原因:
不能用nil来初始化NSAttributedString,否则会crash。
解决办法:

if (nilString != nil) {
    NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:nilString];
}

总结:
在日常业务开发过程中,要多思考异常情况,对于一些动态值,必须加上保护,防止crash的产生。本文中代码在本文Crash Demo

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,802评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,109评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,683评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,458评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,452评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,505评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,901评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,550评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,763评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,556评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,629评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,330评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,898评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,897评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,140评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,807评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,339评论 2 342

推荐阅读更多精彩内容

  • 版权声明本文转自网易杭州前端技术部公众号,由作者授权发布。 前言 大白(Baymax),迪士尼动画《超能陆战队》中...
    XueYongWei阅读 2,013评论 2 11
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,082评论 1 32
  • Crash我们不得不面对的问题,但是好多人在遇到Crash的时候都无从下手,很多的时候都是凭着感觉找问题。今天我做...
    SunshineBrother阅读 8,374评论 0 15
  • 《欢乐颂》相信大家都看过或听说过,无论是微博还是微信,都少不了关于这个剧的剧情和人物的讨论。其中一个话题我至今印象...
    口述笔录阅读 210评论 0 1
  • 平常的夜晚。从宿舍的厕所出来的最后一个人关掉了寝室里的主灯,也是寝室里唯一的灯。再从窗外射入的昏蓝光芒与自带的台灯...
    噫的说阅读 316评论 0 0