Populating TableView with multiple sections and multiple dictionary in an array in Swift

前端 未结 2 1787
独厮守ぢ
独厮守ぢ 2020-12-07 23:40

I have a 3 category which I was using as a section. In that section I have to populate data which is in array of dictionary. Here is my code:-

var sections =         


        
2条回答
  •  有刺的猬
    2020-12-08 00:27

    If itemA array for Category A, itemB array for Category B and so on then you can return array count in numberOfRowsInSection this way.

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        switch (section) {
            case 0: 
               return itemsA.count
            case 1: 
               return itemsB.count
            default: 
               return itemsC.count
         }
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "StoreCell") as! UITableViewCell
        switch (indexPath.section) {
            case 0: 
               //Access itemsA[indexPath.row]
            case 1: 
               //Access itemsB[indexPath.row]
            default: 
               //Access itemsC[indexPath.row]
         }
         return cell
    }
    

    Note: It is batter if you create single Array of struct or custom class that will reduce all your array with single array.

提交回复
热议问题