UIActionSheet 截断长字符串!替代品?

发布于 2024-09-04 21:28:24 字数 163 浏览 3 评论 0原文

我有一个 UIActionSheet,它为用户提供了一些标准选择。然而,按钮上的文本并没有像文本字段那样巧妙地缩小,但当文本太多时,它只是用省略号截断。

我需要在操作表按钮上多说一点,但没有足够的空间。不幸的是,我没有看到任何改变操作表行为的方法。对替代方案有什么想法吗?

谢谢!

I have a UIActionSheet which gives the user a few standard choices. The text on the buttons, however, does not cleverly scale down like a text field though when there's too much-- it just truncates with an ellipsis.

I need to say a little more in on of my action sheet buttons than there's room for. I don't see any way of changing the action sheet's behavior, unfortunately. Any thoughts on alternatives?

Thanks!

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

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

发布评论

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

评论(1

谁与争疯 2024-09-11 21:28:24

您可以将一些描述性文本放入 UIActionSheet 的 title 属性中,然后在按钮标题中仅给出动词或简洁的内容。

一种替代方法是:您可能想要创建一个用 presentModalViewController:animated: 显示的全屏视图,其中您有更多空间来显示文本。

第三种选择是创建一个 UIView,它使用可以自定义的 UIButtons 进行动画处理,但不会填充整个屏幕。我在一些应用程序中这样做,其中“设置”位于向上滑动的选项卡中,但不需要覆盖整个屏幕。

You could put some of the descriptive text in the UIActionSheet's title property, and then give just the verb or something concise in the button titles.

One alternative is: you might want to create a full-screen view that you show with presentModalViewController:animated:, where you have more space to show the text.

A third alternative is to create a UIView that animates up with UIButtons that you can customize, but doesn't fill the entire screen. I do that with some of my apps where the Settings are in a tab that slides up but doesn't need to cover the entire screen.

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