我想在我的TableView中添加部分,如何使用swift3
我必須讓我的TableView內部分:存儲在「節」
var sections = SectionData().getSectionsFromData() // Declaration: [(key: String, value: [String])]
我所有的數據。在存儲所有的ABC鑰匙,和值所有以26個字母的一個啓動的項目相應
我無法弄清楚如何訪問值
我的代碼:
var sections = SectionData().getSectionsFromData()
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return sections.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return sections.[section].count // error
}