Skip to content

Instantly share code, notes, and snippets.

@JeOam
Last active October 10, 2017 03:15
Show Gist options
  • Save JeOam/bc2c010eff0b0415a8c9 to your computer and use it in GitHub Desktop.
Save JeOam/bc2c010eff0b0415a8c9 to your computer and use it in GitHub Desktop.
iOS 应用性能调优 Tips

检测 ViewController 是否被释放:

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

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

小 tips:单文件内搜索:^ 可查看本文件用到 block 的地方。


@AironMore
Copy link

WKWebView first load 很慢, 而且无法使用 NSURLProtocol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment