gpt4 book ai didi

iOS)如何制作顶部和底部固定 View 的Tab View

转载 作者:行者123 更新时间:2023-11-28 21:41:36 26 4
gpt4 key购买 nike

我无法按照自己的意愿制作标签 View 。

这是我的计划,在顶部和底部,有每个固定 View 。所以必须有中间 View 。在那里我想插入标签栏和 subview Controller 。

但是通过使用 storyboard 和 tabbarController,我必须为每个 subview Controller 制作相同的固定 View ,不是吗?

如何才能做到正确?

最佳答案

您可以将选项卡栏 Controller 中的 View 导入到 View Controller 中的中间 View 。

为标签栏 Controller 提供 Storyboard ID。我在这里使用“制表符”。

UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
UITabBarController* tab = [storyboard instantiateViewControllerWithIdentifier:@"Tab"];
tab.view.frame = self.inBetweenView.bounds; // replace with your view's name
[self.inBetweenView addSubview:tab.view];

[self addChildViewController:tab];
[tab didMoveToParentViewController:self];

关于iOS)如何制作顶部和底部固定 View 的Tab View,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31837735/

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