在研究容器 View Controller 以尝试重构某些代码时,我遇到了一些我不理解的东西。
Apple 文档告诉我,为了让 subview Controller 调用其外观方法,必须使用 addChildViewController:
这让我感到困惑,因为我的代码没有使用任何容器 View Controller 方法,但我的所有 subview Controller 都收到了 viewWillAppear:
消息。
我将代码简化为这个简单的示例,尽管调用了 addChildViewController:
@interface ChildViewController : UIViewController
@end
@implementation ChildViewController
- (void)loadView {
self.view = [[UIView alloc] initWithFrame:CGRectMake(10.0f, 10.0f, 250.0f, 250.0f)];
}
- (void)viewWillAppearBOOL)animated {
[super viewWillAppear:animated];
NSLog(@"ChildViewController:viewWillAppear:");
}
@end
@interface RootViewController : UIViewController
@property (strong) ChildViewController *cvc;
@end
@implementation RootViewController
@synthesize cvc;
- (void)loadView {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(10.0f, 10.0f, 500.0f, 500.0f)];
cvc = [[ChildViewController alloc] init];
[view addSubview:[cvc view]];
self.view = view;
}
@end
@implementation AppDelegate
- (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.rootViewController = [[RootViewController alloc] init];
[self.window makeKeyAndVisible];
return YES;
}
@end
为什么会这样?
调用addSubview
的过程会导致 View 出现,从而导致loadView
、viewDidLoad
、viewWillAppear
、viewDidAppear
等,调用。 addChildViewController
(以及您也应该执行的对 didMoveToParentViewController
的调用)不会影响这一点。
您调用 addChildViewController
以确保您的 Controller 层次结构与 View 层次结构保持同步。如果您不这样做,您将无法将某些事件传递给您的子 Controller (例如旋转事件)。此外,通过执行 addChildViewController
,您的 Controller 将为您保留,而您无需维护自己的属性来跟踪子 Controller 。
如果您看到 WWDC 2011 - #201 Implementing UIViewController Containment ,它将讨论保持 View 层次结构和 Controller 层次结构同步的重要性。
关于ios - 为什么即使 View Controller 没有显式添加为子项,外观方法也会被调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15774605/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |