答案 0 :(得分:1)
在tableView(_:numberOfRowsInSection:)
中,您需要返回该部分中的行数。现在你要返回部分的数量(这是你应该做的,并且从numberOfSectionsInTableView(_:)
返回)。
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return objectsArray[section].sectionObjects.count
}
答案 1 :(得分:0)
因为在你的numberOfRowsInSection
和numberOfSectionsInTableView
委托函数中,你获得了Objects数组的计数,其中只有两个对象。您的部分是对象计数,但您的行是sectionsObject数组,您将放入对象数组中的每个对象。