如何实现“向左擦除” UIButton 中的图标

发布于 2024-12-09 06:36:11 字数 196 浏览 0 评论 0原文

我试图在 UIButton 的文本中获取“向左擦除”符号 - 但如何实现呢?

⌫   Delete  [Delete]    ⌫    U+232B  ERASE TO THE LEFT

或者是我在 UIButton 中放置 png 的唯一选择?

有什么想法吗? - 谢谢

I am trying to get the "erase to left" symbol in the text of an UIButton - but how?

⌫   Delete  [Delete]    ⌫    U+232B  ERASE TO THE LEFT

Or is my only option to make a place a png in the UIButton?

Any ideas? - thanks

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

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

发布评论

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

评论(1

燃情 2024-12-16 06:36:12

您可以将 unicode 字符设置为按钮的标签:

[myButton setTitle:@"\u232B" forState:UIControlStateNormal];

您可能需要调整字体、字体大小和内容插图以使其看起来不错。

You can set the unicode character as the label of the button:

[myButton setTitle:@"\u232B" forState:UIControlStateNormal];

You may need to play with the font, font size and content insets to get it to look nice.

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