0
我有UITableView作爲SWRevealViewController的一部分用作滑動菜單。UITableView:突出顯示最後一個單元格,但其他單元格也突出顯示
我想選擇在UITableView中的最後一個單元格並執行以下操作:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let customCell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! IGAWindAloftMenuTableViewCell
...
let sectionsAmount = tableView.numberOfSections
let rowsAmount = tableView.numberOfRowsInSection(indexPath.section)
if (indexPath.section == sectionsAmount - 1 && indexPath.row == rowsAmount - 1)
{
customCell.backgroundColor = UIColor.yellowColor()
}
return customCell
}
當我滾動一路下跌,它的工作原理 - 最後一個單元格被突出顯示。但是,當我上下滾動時,表格中間的其他單元格也會突出顯示。
有什麼辦法可以預防它嗎?
謝謝!
非常感謝!這很好。乾杯。 –