1
帶有兩個標識符的tableview單元格。奇數一個小區,在實現代碼如下
甚至是另一個細胞我要按照單雙indexPath
加載識別符。
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
if indexPath.row % 2 == 0{
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! categoryTVC
return cell
}else{
let cell = tableView.dequeueReusableCellWithIdentifier("CellOdd", forIndexPath: indexPath) as! categoryTVC
return cell
}
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.categoryDetailArray?.count ?? 00
}
這項工作,但有一個問題,這..它每次生成一個額外的單元格。
從 –
刪除這'forIndexPath:indexPath' does not work ..still一個額外的單元格。 @AnuradhS –
你可以移動屏幕截圖 –