标签:
方法一:
在表格视图服用时使用:
UIView *backView = [[UIView alloc] initWithFrame:cell.frame];
cell.selectedBackgroundView = backView;
cell.selectedBackgroundView.backgroundColor = [UIColor clearColor];
方法二:
在自定义cell中使用
self.selectionStyle = UITableViewCellAccessoryNone;
标签:
原文地址:http://www.cnblogs.com/xzguo/p/4786781.html