我如何创建与此类似的自定义选项卡栏
我如何创建这个自定义标签栏以及它由什么组成?
How could I create this custom tabbar and what does it consist of?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我如何创建这个自定义标签栏以及它由什么组成?
How could I create this custom tabbar and what does it consist of?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在 cocoacontrols.com 上,您可以找到几个TabBar 实现与此类似。
On cocoacontrols.com you can find several TabBar implementations similar to this.
iOS 5 现在允许更改选项卡栏的背景图像,但这种自定义控件要复杂得多。
您基本上需要编写自己的视图和控制器,它们会在视图之间变化,相应地移动箭头并激活/停用按钮。
至于它包含的元素,我会说
查看如何对带有指示器的标签栏进行编码请查看 GitHub 上的此项目对于类似 Twitter 的标签栏。
iOS 5 now allows to change the background image of the tabbar but this kind of custom control is much more complex.
You would basically need to write your own view and controller that would change between views, move the arrow accordingly and activate/deactivate the buttons.
As of the elements it consists of, i would say
To see how a tabbar with an indicator could be coded check out this project on GitHub for a Twitter-like tabbar.