将 UITabBarController 内的 UITabBar 投射到我自己的类

发布于 2024-10-17 06:44:55 字数 209 浏览 2 评论 0原文

我正在使用 UITabBarController,我想将 tabBar 属性转换/更改为我自己的 tabBar 子类。我可以在 Interface Builder 中通过选择 TabBar 并将类更改为我自己的类来完成此操作,效果很好。但对于这个实现,我没有使用 Interface Builder。

那么,既然我以编程方式构建 TabBarController,我该如何做同样的事情呢?

I am using a UITabBarController, and I would like to cast/change the tabBar property to my own tabBar subclass. I CAN do this in Interface Builder by just selecting the TabBar and changing the class to my own, this works fine. But for this implementation, I am not using Interface Builder.

So, how can I do the same thing since I am building the TabBarController programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

來不及說愛妳 2024-10-24 06:44:55

子标签栏:UI标签栏

subclass then  

declare in viewcontroller also (import them to .h)

subtabbar *subtab;

retain and synthesize it

in viewdidload

self.tabBarController=[[UITabBarController alloc]init];

self.subtab=[[UITabBar alloc]init];

self.tabBarController.tabBar=(UITabBar*)self.subtab;

subtabbar:UItabbar

subclass then  

declare in viewcontroller also (import them to .h)

subtabbar *subtab;

retain and synthesize it

in viewdidload

self.tabBarController=[[UITabBarController alloc]init];

self.subtab=[[UITabBar alloc]init];

self.tabBarController.tabBar=(UITabBar*)self.subtab;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文