gpt4 book ai didi

iphone - 继承 UINavigationController 类和分配 rootViewController 的区别

转载 作者:行者123 更新时间:2023-12-01 19:12:44 25 4
gpt4 key购买 nike

继承 UINavigationController 有什么区别?类并分配 rootViewController属性(或使用 initWithRootViewController: 方法)??

我对此有点困惑。考虑下面 UINavigationController 的代码继承:

@interface NativeViewController : UINavigationController
{

}

现在考虑使用 initWithRootViewController: 方法的以下代码:
UINavigationController *viewController = nil;
if (self) {
NativeViewController *vc = [[NativeViewController alloc] initWithNibName:@"NativeViewController" bundle:nil];
viewController = [[UINavigationController alloc] initWithRootViewController:vc];
[vc autorelease];
}
return viewController;

何时像第一种情况一样使用继承,何时使用 initWithRootViewController:方法??
rootViewController 会发生什么属性(property)继承??

同样的问题适用于 UITabbarController类(class)。

最佳答案

第一个用于自定义 UINavigationController .
另一方面,第二个用于初始化 UINavigationController里面有第一个 View Controller 。
比方说,UINavigationController本身只是导航的占位符UIViewController s。

你还是应该把 rootViewController如果继承 UINavigationController .

关于iphone - 继承 UINavigationController 类和分配 rootViewController 的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15333144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com