self = [super init] 这个问题一直不太明白,今天研究了一下,在stackoverflow找到了下面的答案:
http://stackoverflow.com/questions/2956943/why-should-i-call-self-super-init
我对这些答案简单翻译总结下:
要明白这个问题,首先要知道self 是什么东西,我们什么时候会用到self。
iOS self = [super init]
原文:http://www.cnblogs.com/breezemist/p/5477288.html