美文网首页
tableView的一些属性设置

tableView的一些属性设置

作者: 月见汪 | 来源:发表于2017-06-01 17:52 被阅读4次

//滚动条不显示

self.tableview.showsVerticalScrollIndicator = NO;

//tableview添加阴影

_tableview.layer.shadowOffset = CGSizeMake(0, 0);

_tableview.layer.shadowColor = [UIColor colorWithHexString:@"#7B7B7B"].CGColor;

_tableview.layer.shadowOpacity = 0.4;

_tableview.separatorColor = [UIColor colorWithWhite:0.3 alpha:0.2];

_tableview.clipsToBounds = NO;

// 选中后不让cell保持选中状态

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

// 选中后不让cell保持选中状态

[tableView deselectRowAtIndexPath:indexPath animated:YES];

}

相关文章

网友评论

      本文标题:tableView的一些属性设置

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