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);
网友评论