方法 - dealloc 释放

2020-07-06  本文已影响0人  js_huh

是什么?
对象销毁之前,都会来到此方法里面.

有什么用?

怎么使用?

// 对象销毁前,会调用此方法
- (void) dealloc{
// [super dealloc];  非ARC中需要调用此句
[[NSNotificationCenter defaultCenter] removeObserver: self ];
}
上一篇 下一篇

猜你喜欢

热点阅读