UITableView Tips

2017-07-14  本文已影响5人  u14e

1.cell选中时,去掉选中的灰色背景

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

或者直接让灰色背景不显示

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    ......
    // Configure the cell...
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}

2.取消cell之间的分隔线

self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

默认是UITableViewCellSeparatorStyleSingleLine

上一篇下一篇

猜你喜欢

热点阅读