Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个标签栏项目的数量由用户定义的标签栏(假设它存储在变量 NumberOfTabBarItem 中)。有没有办法将标签栏项目放入某种数组并显示?谢谢!
从 UITabBar 类参考,有一个属性...
@property(nonatomic, copy) NSArray *items
可以通过...访问
- (void)setItems:(NSArray *)items animated:(BOOL)animated
因此,您可以以编程方式加载带有 TabBar 项的 NSArray 并使用该方法来显示它。