tableview didse
tableview didselect去除点击效果
有两个:
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
// [cell setSelectionStyle:UITableViewCellSelectionStyleNone]; (这种是没有点击后的阴影效果)
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
cell.selected = NO; (这种是点击的时候有效果,返回后效果消失)
tableviewCell中Cell不能被点击
cell.selectionStyle = UITableViewCellSelectionStyleNone;
本文转自 卓行天下 51CTO博客,原文链接:http://blog.51cto.com/9951038/1747482,如需转载请自行联系原作者