如果我有一个用数组中的元素填充的表视图,但是我希望第一个单元格是某个特定元素,而不是数组中的某个特定元素(如果某个变量等于),然后让数组填充其后的其余单元格,我该怎么做?
答案 0 :(得分:1)
选中func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
。
https://developer.apple.com/documentation/uikit/uitableviewdatasource/1614861-tableview
使用if语句,在row == 0
时返回另一个单元格,然后返回反映该数组的单元格。