如何在 iOS 工具栏上实现指针箭头?
我希望在当前选定的工具栏图标上方实现一个指针箭头,非常类似于 Reeder 和 Instacast 中的设计:
当按下另一个工具栏项时,指针箭头应平滑移动。我需要能够选择哪些项目导致箭头移动,如 Instacast 和 Reeder 中的功能,其中只有某些项目会更改箭头位置。
我可以在没有太多开销和大量 UIKit 子类化的情况下做到这一点吗?
I'm looking to implement a pointer arrow above the currently selected toolbar icon much like the design found in Reeder and Instacast:
The pointer arrow should move across smoothly when another toolbar item is pressed. I need to be able to choose which items cause the arrow to move, as featured in Instacast and Reeder, where only certain items change the arrow position.
Can I do this without too much overhead and a lot of UIKit subclassing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该不会太糟糕:只需拍摄问题中的小三角形图像,然后将其放入位于工具栏上方的 UIImageView 中即可。
然后进行设置,以便在调用相关工具栏按钮的
action:
时,UIImageView
滑动,使其位于正确的位置,并带有动画。像这样的东西:This shouldn't be too bad: just take an image of the little triangle like you have in your question, and put it in a
UIImageView
that sits above the toolbar.Then set it up so that when the
action:
for the relevant toolbar button is called, theUIImageView
slides so that it's in the right place, with animation. Something like: