Skip to content

Instantly share code, notes, and snippets.

View zzu-dream's full-sized avatar

Dream007 zzu-dream

View GitHub Profile
@zzu-dream
zzu-dream / ios.md
Created November 10, 2015 02:44 — forked from JeOam/ios.md
iOS 应用性能调优 Tips

检测 ViewController 是否被释放:

- (void)dealloc{
    NSLog(@"dealloc this ViewController ");
}

注意如果使用了 block,而且 block 中引用了 self,会导致 ViewController 退出后,不被释放; 需将用到 self 的地方改为 __weak __typeof(&*self)weakSelf = self 中的 weakSelf