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

IOS TableView 去除点击后产生的灰色背景

时间:2016-12-05 14:26:54      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:owa   class   ios   turn   init   nil   return   ide   ima   

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"activityTableViewCell";
    activityTableViewCell *cell = (activityTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
         cell = [[activityTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    
    cell.selectionStyle=UITableViewCellSelectionStyleNone;//设置cell点击效果
    
    return cell;
}

  或者

//重写 cell 点击事件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
    //当离开某行时,让某行的选中状态消失
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

  

IOS TableView 去除点击后产生的灰色背景

标签:owa   class   ios   turn   init   nil   return   ide   ima   

原文地址:http://www.cnblogs.com/ansyxpf/p/6133481.html

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