我想使用带有多个单元格的表格视图,一个单元格有多个列,2 个单元格只有一列
Posted
技术标签:
【中文标题】我想使用带有多个单元格的表格视图,一个单元格有多个列,2 个单元格只有一列【英文标题】:I want to use tableview with multiple cells, once cell with multiple columns and 2 cells with one column only 【发布时间】:2017-01-28 10:52:15 【问题描述】:我有一个表格视图,其中有 3 个单独的单元格,两个单元格一列,一个单元格两列。 对于 tableview 单元格中具有 2 个图像的单元格,indexPath 应该更改。 任何帮助将不胜感激。
【问题讨论】:
【参考方案1】: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
【讨论】:
以上是关于我想使用带有多个单元格的表格视图,一个单元格有多个列,2 个单元格只有一列的主要内容,如果未能解决你的问题,请参考以下文章
带有多个自定义单元格的“UITableView 无法从其数据源获取单元格”