我如何模仿iOS设置页面布局?

时间:2016-10-13 20:21:22

标签: ios

我正在开发一款应用,我想让它看起来像iOS上的设置页面:

enter image description here

我已经有了这个:

enter image description here

但是你可以看到我无法复制灰色背景和章节标题。

我该怎么做?创建该灰色背景并添加如下图所示的空间:

enter image description here

由于

1 个答案:

答案 0 :(得分:1)

将您的桌面样式从plain切换为grouped

enter image description here

然后只需使用以下代码设置您的章节标题,就像平常一样,它们将与设置应用程序显示相同:

func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    return "some section title"
}