iPhone 开发 - TabBarItem 的数量
我想创建一个选项卡栏,其选项卡栏项目的数量由用户定义(假设它存储在变量 NumberOfTabBarItem 中)。有没有办法将选项卡栏项目放入某种数组中并显示? 谢谢!
I want to create a Tabbar that the number of tab bar items is defined by the user (let say it stores in a variable NumberOfTabBarItem). Is there a way to put tab bar items into some sort of array and display?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 UITabBar 类参考中,有一个属性...
可以通过...访问,
因此您可以以编程方式加载带有 TabBar 项目的 NSArray 并使用该方法来显示它。
From the UITabBar class reference, there's a property...
that can be accessed with...
So you can programmatically load up an NSArray with TabBar items and use that method to display it.