码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 取消表格单元格 TableViewCell 去掉高亮状态 点击Cell取消选择状态

时间:2014-08-19 14:13:14      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:des   os   io   ef   sp   ios   table   ui   

以下是两种实现效果

 

1. 自定义cell 继承UITableViewCell  

 重写  

 

-(void)setSelected:(BOOL)selected animated:(BOOL)animated

{

 

}

 

-(void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated

}

里面不写任何东西 

注意重写的时候一定要有带animated 方法,不然还是无效

 

 

2.点击单元格 取消选中单元格

 

//  点击单元格的时候取消选中单元格

-(void)tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    [tableView deselectRowAtIndexPath:indexPath animated:YES];

}

 

IOS 取消表格单元格 TableViewCell 去掉高亮状态 点击Cell取消选择状态,布布扣,bubuko.com

IOS 取消表格单元格 TableViewCell 去掉高亮状态 点击Cell取消选择状态

标签:des   os   io   ef   sp   ios   table   ui   

原文地址:http://www.cnblogs.com/llios/p/3921940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!