如何动态创建带有默认项目的选项卡栏?
我有一个应用程序,在其中动态创建选项卡栏。现在我想添加默认项目,如联系人、更多、关于、收藏夹等。如何使用选项卡栏动态添加所有这些项目?
CGRect myTab =CGRectMake(0,368,320,49);
UITabBar *tabBar = [[UITabBar alloc] initWithFrame:myTab];
[self.view addSubview:tabBar];
I have application in which i have create tab-bar dynamically. Now i want to add default items like contact, more, about, favorite etc. How i add all these item dynamically with Tab-Bar?
CGRect myTab =CGRectMake(0,368,320,49);
UITabBar *tabBar = [[UITabBar alloc] initWithFrame:myTab];
[self.view addSubview:tabBar];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常您会使用 UITabBarController 创建 TabBar,在这种情况下,您可以简单地设置属性。
如果您确定要创建 UITabBar,那么您需要使用 items 属性。像这样的东西:
Usually you would be creating a TabBar using a UITabBarController, in which case you can simply set the property
If you're sure you wish to create a UITabBar then you want to use the items property. Something like this: