
-
ARC下NSNotificationCenter需要remove
- (void) dealloc {
// [super dealloc] 千万不要画蛇添足
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void) dealloc {
-
const or #define
#define PI 3.14159 //只预处理时进行符号替换,不推荐
const doulbe Pi=3.14159 //安全性高,和效率上推荐




近期评论