美文网首页
UITableViewCell 设置选中状态下颜色

UITableViewCell 设置选中状态下颜色

作者: 一个萝卜X个坑 | 来源:发表于2018-09-04 17:52 被阅读7次
        cell.selectedBackgroundView=[[UIView alloc]initWithFrame:cell.frame];
        cell.selectedBackgroundView.backgroundColor=[UIColor whiteColor];
    设置当前cell为选中状态
    long numOfSelectedCell = [tableView indexPathForCell:cell].row;
        if (indexPath.row==numOfSelectedCell) {
            [self.tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone];
        }
    

    相关文章

      网友评论

          本文标题:UITableViewCell 设置选中状态下颜色

          本文链接:https://www.haomeiwen.com/subject/vyrnwftx.html