码迷,mamicode.com
首页 > 其他好文 > 详细

使用[NSKeyedUnarchiver unarchiveObjectWithData:data]程序crash

时间:2015-06-06 23:34:49      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

使用NSKeyedArchiver压缩对象成二进制数据,再使用NSKeyedUnarchiver解压二进制数据,如果解压时数据为nil,或者数据中有异常的数据,那么解压将会出错,甚至会导致程序crash掉。可以用这种方法防止程序crash:

 NSData *data=[[NSUserDefaults standardUserDefaults] valueForKey:key];

    NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];

    if (data) {

        @try {

            dict=[NSKeyedUnarchiver unarchiveObjectWithData:data];

            return dict;

        }

        @catch (NSException *exception) {

            return dict;

        }

        @finally {

            

        }

    }

    return dict;


使用[NSKeyedUnarchiver unarchiveObjectWithData:data]程序crash

标签:

原文地址:http://blog.csdn.net/lklmr/article/details/46391963

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!