我想将tableview与多个单元格一起使用,一次是具有多个列的单元格,另一个是仅有一列的单元格

时间:2017-01-28 10:52:16

标签: objective-c uitableview tableview custom-cell

我有一个tableview,其中有3个单独的单元格,两个单元格有一列,一个单元格有2列。 对于在tableview单元格中具有2个图像的单元格,indexPath应该更改。 任何帮助将不胜感激。

first cell with one column

cell 2 with 2 columns

1 个答案:

答案 0 :(得分:0)

You can use this code to shoe differnt cells:- 


func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
    if indexPath.row = 0   // First Cell  
     {
                let cell = tableView.dequeueReusableCellWithIdentifier(“YourCell”, forIndexPath: indexPath) as! YourCell
            return cell
     }
     else if indexPath.row = 1  // Second Cell 
     {
            let cell = tableView.dequeueReusableCellWithIdentifier(“YourCellWithTwoImages”, forIndexPath: indexPath) as! YourCellWithTwoImages
            return cell
   }
    // Add Condtions for cells 
}