自定义 uitabbar 子类 uitabbarcontroller 还是开发自定义视图?
我正在为基于 iOS 4 的 iphone/ipad 开发一个应用程序,需要为我的应用程序开发自定义 UITabBar。根据规范,标签栏有 1.图像作为背景 2. 标签栏项目作为自定义按钮 3.带有徽章的按钮
请参考图片: http://imageshack.us/photo/my-images/638/tabbar。 jpg/
不需要带来任何与按钮点击相对应的视图。所以建议 一个。子类 uitabbar 控制器或 b.使用带有徽章的自定义按钮制作视图?
如果可能的话,请分享您的想法、替代方法和代码片段。 谢谢和问候, 电源电脑
I am developing an application for iOS 4 based iphone/ipad, required to develop custom UITabBar for my application. as per specification, The tab-bar has
1. image as background
2. tabbar items as custom buttons
3. buttons having badges
Please refer the image:
http://imageshack.us/photo/my-images/638/tabbar.jpg/
It is not required to bring any views corresponding to the click of buttons. so is it advisable to
a. subclass uitabbar controller OR
b. make a view with custom buttons having badges?
Please share your thoughts, alternative approach and code snippet if possible.
Thanks and Regards,
powerpc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您没有打开任何视图,那么您很可能正在寻找工具栏而不是选项卡栏。
查看您的图像后,我建议您使用
UIView
滚动您自己的图像。但是,如果您需要高级选项卡栏功能(例如管理项目和徽章),您也可以对
UITabBar
进行子类化。毕竟它也是 UIView 的子类。If you are not bringing on any views, you are most probably looking for a toolbar rather than a tab bar.
After looking at your image I recommend rolling your own with
UIView
.However, if you need advanced tab bar functionality, such as managing the items and badges, you can also subclass
UITabBar
. After all it is also a subclass ofUIView
.