• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 为什么即使 View Controller 没有显式添加为子项,外观方法也会被调用?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 10:02:26 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

在研究容器 View Controller 以尝试重构某些代码时,我遇到了一些我不理解的东西。

Apple 文档告诉我,为了让 subview Controller 调用其外观方法,必须使用 addChildViewController:

将它们作为 subview Controller 添加到父 View Controller 中

这让我感到困惑,因为我的代码没有使用任何容器 View Controller 方法,但我的所有 subview Controller 都收到了 viewWillAppear: 消息。

我将代码简化为这个简单的示例,尽管调用了 addChildViewController:

,但您仍会在调试日志中看到“ChildViewController:viewWillAppear:”
@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

为什么会这样?



Best Answer-推荐答案


调用addSubview的过程会导致 View 出现,从而导致loadViewviewDidLoadviewWillAppear 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap