清楚tableview多余的横线,cell点击没效果
self.tableV.tableFooterView =[[UIView alloc]initWithFrame:CGRectMake(0,0,0,CGFLOAT_MIN)];//CGFLOAT_MIN为无限接近0的浮点数
方法1:
selection设置为None,默认是Default
方法2:
UITableViewCell *cell;
......
......
cell.selectionStyle = UITableViewCellSelectionStyleNone;
点击有效果,cell没有颜色
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
在cell的点击方法中加上[tableView deselectRowAtIndexPath:indexPath animated:NO];
网友评论