美文网首页
iOS 系统的tableViewCell

iOS 系统的tableViewCell

作者: 阶梯 | 来源:发表于2017-09-25 16:30 被阅读20次
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"UITableViewCell" forIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.textLabel.text = self.dataArr[indexPath.row];
    cell.imageView.image = GetImage(@"添加");
    cell.textLabel.font = kFontWithSize(15);
    cell.textLabel.textColor = k3TextColor;
    //cell右侧的 ‘>’
    cell.accessoryType =  UITableViewCellAccessoryDisclosureIndicator;
    //设置系统的间隔线的edgeInset
    cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
    

    相关文章

      网友评论

          本文标题:iOS 系统的tableViewCell

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