tableview didse

简介:

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,如需转载请自行联系原作者
目录
相关文章
|
7月前
|
开发者 iOS开发
介绍 UITableView 和 UICollectionView,它们的区别是什么?
介绍 UITableView 和 UICollectionView,它们的区别是什么?
190 0
UITableViewCell和UICollectionViewCell自适应高度
UITableView和UICollectionView想通,此处就已UITableView为例
229 0
UITableViewCell和UICollectionViewCell自适应高度
UITableView使用中的一些刁专问题总结
tableview中cell的系统分隔线问题(分隔线顶满或者缩短)
UITableView使用中的一些刁专问题总结
UITableView的创建
UITableView的创建
97 0
|
iOS开发
iOS UITableViewCell嵌套CollectionView,tableview和collectionview同时滑动bug修复
iOS UITableViewCell嵌套CollectionView,tableview和collectionview同时滑动bug修复
998 0