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];
}
原文地址:https://www.cnblogs.com/gzz2016/p/5266857.html