iPad で UITableViewCell の背景色を変更する

iPhone と iPad で UITableViewCell の背景色の指定方法が異なるようで、iPad で反映されない場合には以下の Delegate で指定することにより改善されます。

    func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
        cell.backgroundColor = UIColor.blackColor()
    }