标题和消息之间的操作表空间?

时间:2016-10-10 02:34:41

标签: ios swift uiactionsheet

目前正在尝试创建一个操作表,其中包含标题和邮件之间的一些空格。

这是我的行动表目前的样子:

enter image description here

以下是我希望它的样子:

enter image description here

忽略"停止跟随"下的随机蓝圈。第二张图片中的按钮。我只是试图在标题和消息之间实现空间,而无需创建自定义操作表。这可以实现吗?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:5)

在邮件上添加换行符 \ n 应该有帮助:

let alert = UIAlertController(title: "Stop Following", message: "\n\n\nYou'll stop receiving activity", preferredStyle: UIAlertControllerStyle.actionSheet)

enter image description here