在 UIViewController 中使用 loadView 时非常有趣的问题。
通常我们是这样使用的
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
NSLog(@"loadview");
[super loadView];
}
如果删除
[super loadView];
我们将因此而死循环
- (void)loadView {
NSLog(@"loadview");
}
为什么 ?