综上:
- 如果当前的VC不使用Interface Builder,请覆盖这个方法,反之如果使用了,则一定不能覆盖这个方法(you
must not override
this method)。 - loadView这个方法负责创建当前VC的根视图的视图层级(view hierachy),在这里给self.view赋值(
non-nil
value),并且不要调用[super loadView];(Your custom implementation of this methodshould not call super
); - viewDidLoad用来做额外的初始化(additional initialization);