似乎我在两者中都看到了它们。这很有趣,因为它们不会相互继承。他们也有一些共同的祖先,但谁拥有 initWithCoder 和 iniwWithNibName?
那么给了什么?
同样在 UIViewController 参考类 initWithCoder 中根本没有提到
-(id)initWithCoder:(NSCoder *)aDecoder
{
//NSString * superClass =NSStringFromClass([self superclass]) ;
self = [self initWithNibName:nil bundle:nil];
if (self) {
}
return self;
}