gpt4 book ai didi

ios - View 下的 UItab

转载 作者:行者123 更新时间:2023-11-29 03:49:27 25 4
gpt4 key购买 nike

如何以编程方式使用自动布局将 UI 选项卡放在 UIView 下?

我正在尝试自己做,但它似乎给我带来了有关无法满足的约束的错误。

最佳答案

詹姆斯,

我不认为 Cocoa API 中有一个名为“UI Tab”的类,但是我偶然发现了下面的链接,http://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/ViewControllerCatalog/Chapters/TabBarControllers.html

话虽这么说,正如文档所解释的那样,“以编程方式创建选项卡栏”

- (void)applicationDidFinishLaunching:(UIApplication *)application {

tabBarController = [[UITabBarController alloc] init];



MyViewController* vc1 = [[MyViewController alloc] init];

MyOtherViewController* vc2 = [[MyOtherViewController alloc] init];



NSArray* controllers = [NSArray arrayWithObjects:vc1, vc2, nil];

tabBarController.viewControllers = controllers;



window.rootViewController = tabBarController;

}

然后,您可以将选项卡栏项目添加到新创建的 View Controller (如文档所述)。

关于ios - View 下的 UItab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17254323/

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