tableview didse
tableview didse
tableview didselect去除点击效果有两个:
-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
// UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
// [cell setSelectionStyle:UITableViewCellSelectionStyleNone]; (这种是没有点击后的阴影效果)
UITableViewCell*cell = [tableViewcellForRowAtIndexPath:indexPath];
cell.selected=NO; (这种是点击的时候有效果,返回后效果消失)
tableviewCell中Cell不能被点击
cell.selectionStyle=UITableViewCellSelectionStyleNone;
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。