我創建了一個tableView,我試圖給它一個backgroundColor,但突然發生了一個奇怪的行爲。左側是白色,而不是我給它的背景顏色?這是什麼原因?tableView單元格左邊是白色
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
cell.textLabel?.backgroundColor = UIColor(rgba: "#333843")
cell.textLabel?.font = UIFont(name: "HelveticaNeue", size: 16)
cell.textLabel?.text = "Favoritter"
cell.textLabel?.textColor = UIColor(rgba: "#ffef7c")
return cell
}
嘗試更改inset = 0或將單元格背景顏色更改爲您當前的背景顏色。 – Bejibun 2014-10-16 15:30:34