在tableview中无法获得两个以上的节对象

时间:2016-03-03 20:14:03

标签: swift tableview

我想了解tableview中的部分内容。我一直关注Jared Davidson youtube教程。但我只能在节标题下面的对象中添加两个字符串。它有点像极限吗? enter image description here

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

tableView(_:numberOfRowsInSection:)中,您需要返回该部分中的行数。现在你要返回部分的数量(这是你应该做的,并且从numberOfSectionsInTableView(_:)返回)。

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return objectsArray[section].sectionObjects.count
}

答案 1 :(得分:0)

因为在你的numberOfRowsInSectionnumberOfSectionsInTableView委托函数中,你获得了Objects数组的计数,其中只有两个对象。您的部分是对象计数,但您的行是sectionsObject数组,您将放入对象数组中的每个对象。