Skip to content

Instantly share code, notes, and snippets.

View shaotianchi's full-sized avatar
🎯
Focusing

EscapedDog shaotianchi

🎯
Focusing
View GitHub Profile
@anson0370
anson0370 / JD.md
Last active December 17, 2015 20:29

关于我们

我们是谁

6位前阿里系员工组成的完整团队,从视觉设计到PD以及前/后端开发,团队氛围没羞没臊。

我们做什么

电商解决方案养活自己(咨询和外包)、O2O平台争取发财。

@bomberstudios
bomberstudios / sketch-plugins.md
Last active February 26, 2024 07:02
A list of Sketch plugins hosted at GitHub, in no particular order.
@JeOam
JeOam / ios.md
Last active October 10, 2017 03:15
iOS 应用性能调优 Tips

检测 ViewController 是否被释放:

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

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