标签: ios objective-c
我想完成一个单元格表视图,就像这个图像
我基本上想要完成。
答案 0 :(得分:-1)
如果您希望UITableView只有一个单元格,请将其设置为numberOfRowsInSection,如下所示:
UITableView
numberOfRowsInSection
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 1 }