多个TableView自定义单元格

时间:2017-01-24 18:52:27

标签: ios swift tableview cells

所以我创建了一个包含2个自定义单元格的表视图。

我正在尝试将数据输入第3个单元格,但是在返回多少个单元格时我遇到了问题。也是为了让我的标题数组从我的第三个单元格开始。

var itemKey = 'Jsonobject';
// Setting value
localStorage.setItem(itemKey, JSON.stringify(json));
// Getting value
var json = JSON.parse(localStorage.getItem(itemKey));

1 个答案:

答案 0 :(得分:0)

在最后一种情况下,行不可能等于3.将其更改为2.

您在func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int)中返回3。所以行的值只有[0,1,2]

根据您的代码,您可能会犯错,将sliderIndex设置为1并将instagramIndex设置为2.它们应为0和1.