如何在 iOS 工具栏上实现指针箭头?

发布于 2025-01-07 03:17:10 字数 273 浏览 0 评论 0原文

我希望在当前选定的工具栏图标上方实现一个指针箭头,非常类似于 Reeder 和 Instacast 中的设计:

Instacast Toolbar

当按下另一个工具栏项时,指针箭头应平滑移动。我需要能够选择哪些项目导致箭头移动,如 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:

Instacast toolbar

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

捶死心动 2025-01-14 03:17:10

这应该不会太糟糕:只需拍摄问题中的小三角形图像,然后将其放入位于工具栏上方的 UIImageView 中即可。

然后进行设置,以便在调用相关工具栏按钮的 action: 时,UIImageView 滑动,使其位于正确的位置,并带有动画。像这样的东西:

[UIView beginAnimations:@"TriangleAnimation" context:NULL];
[UIView setAnimationDuration:0.25];
triangleImageView.frame = //new location here
[UIView commitAnimations];

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, the UIImageView slides so that it's in the right place, with animation. Something like:

[UIView beginAnimations:@"TriangleAnimation" context:NULL];
[UIView setAnimationDuration:0.25];
triangleImageView.frame = //new location here
[UIView commitAnimations];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文