如何左对齐 UIActionSheet 的标题
是否可以将 UIActionSheet
的 title
文本左对齐?谢谢!
Is it possible to left-justify the title
text of a UIActionSheet
? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您只需在 UIActionsheet 中为按钮设置的名称后使用空格即可。例如,如果是@“download”,您可以更改为@“Download------------”,其中破折号是空格。
我希望它能起作用。
You can simply use spaces after the name that you set for a button in UIActionsheet. For example if it is @"download" you can change to @"Download------------" which dashes here are spaces.
I hope it works.
无法自定义
UIActionSheet
的title
。如果您想要类似的东西,您将必须设计自己的克隆。It is not possible to customize the
title
of anUIActionSheet
. If you want something similar, you will have to design your own clone.是的,你可以做到。
yes, you can do it.
是的,这是可能的
Yes it is possible