2016-03-11 不知道时通知可写在这里

文/si1ence(简书作者)
原文链接:http://www.jianshu.com/p/2b79b520d61c
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

- (instancetype)init {
self = [super init]; if (self) {
// 注册通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(clearMemory) name:UIApplicationDidReceiveMemoryWarningNotification object:nil];
}
return self;
}
// 提示:虽然执行不到,但是写了也无所谓
- (void)dealloc {
// 删除通知
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
posted @ 2016-03-11 19:05  zhen_zhen  阅读(146)  评论(0编辑  收藏  举报