iOS开发swift中tableView的条目点击的背景和文字颜色

    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        let cell = super.tableView(tableView, cellForRowAtIndexPath: indexPath)

        

//        //背景色

//        cell.backgroundColor = UIColor.redColor()

//        

//        //选中背景色

//        let bgView:UIView = UIView(frame: CGRectMake(0,0,cell.frame.width,cell.frame.height))

//        bgView.backgroundColor = UIColor.blueColor()

//        cell.selectedBackgroundView = bgView

//        

//        //系统自带的文字颜色,如对勾的颜色

//        cell.tintColor = UIColor.greenColor()

        

        //phoneNumberLabel.highlightedTextColor = UIColor.greenColor()

        //也可以在storyboard中设置

    

        return cell

    }

你可能感兴趣的:(mac)