按钮图标:圆形关闭图标

发布于 2024-09-25 08:51:02 字数 374 浏览 1 评论 0原文

我见过其他应用程序使用圆形图标来关闭视图。我发现的唯一类似的图标是 UIBarButtonSystemItemStop。但这仅呈现一个旋转的十字,周围有边框(与按钮一样)。

我宁愿拥有类似 UIButtonTypeInfoLight 的东西。如果使用此按钮,则看不到边框。该图标也是一个圆形灰色图标,其中有一个符号(此处为 i 符号)。还有更多这种风格的图标可用吗? UIBarButtonSystemItemUIButtonType 都没有提供这一点。

我还看到了 UIButtonTypeInfoLight 风格的雷电图标。这些图标是自己做的吗?如果是,如何将它们包含在内以使边框不可见?

I've seen other apps are using a round icon for closing a view. The only similar icon I found is UIBarButtonSystemItemStop. But this presents only a rotated cross with a border (as always with buttons) around it.

I rather would like have something like a UIButtonTypeInfoLight. If this button is used, no border is visible. Also the icon is a round grey icon with a symbol (here i symbol) in it. Are there further icons in this style available? Neither UIBarButtonSystemItem nor UIButtonType is offering that.

I have also seen a thunderbolt icon in the style of UIButtonTypeInfoLight. Are these icons self made? If yes, how are they included so that no border is visible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

败给现实 2024-10-02 08:51:03

这些按钮是自定义的。

您可以使用 [UIBarButtonItem initWithCustomView:] 将任何自定义视图嵌入到栏中。

您可以将 UIButtonUIButtonTypeCustom 类型一起使用,以便获得没有边框的按钮。还将 showsTouchWhenHighlighted 设置为 YES,以便该按钮像信息按钮一样发光。

These buttons are custom.

You can embed any custom view into bar using [UIBarButtonItem initWithCustomView:].

You can use UIButton with UIButtonTypeCustom type so that you have button with no border. Also set showsTouchWhenHighlighted to YES so that button glows like info button.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文