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

addObserver forKeyPath options 注意事项

时间:2015-11-27 13:06:02      阅读:343      评论:0      收藏:0      [点我收藏+]

标签:

[self.layer addObserver:self forKeyPath:@"cornerRadius" options:NSKeyValueObservingOptionNew context:nil];

添加一个监听

在运行过程中可能出现错误

EXC_BAD_ACCESS

这是因为没有在dealloc中removeObserver的问题

但是有时不确定一个监听有没有添加时,

在dealloc进行removeObserver时又会报

because it is not registered as an observer.

这是因为穿点监听没有添加

但IOS不提供addObserver是否添加的判断功能

所以这里最好写为

@try

{

[self.layer removeObserver:self forKeyPath:@"cornerRadius"];

}

@catch(id exception){}

addObserver forKeyPath options 注意事项

标签:

原文地址:http://www.cnblogs.com/JerryBaxia/p/5000253.html

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