ios7 UITableView 分割线在 使用selectedBackgroundView 选中时有些不显示
UITableView 选中cell ,默认会有一个灰色的背景遮罩效果,这个灰色遮罩就是cell 自带的
selectedBackgroundView
我们可以设置selectedBackgroundView 的frame 、和 背景颜色
selectedBackgroundView.backgroundColor
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { cell.selectedBackgroundView.backgroundColor = [UIColor redColor]; cell.selectedBackgroundView.frame = cell.frame; } -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ [self performSelector:@selector(unselectCell:) withObject:nil afterDelay:0.2]; } -(void)unselectCell:(id)sender{ [_setUpTableView deselectRowAtIndexPath:[_setUpTableView indexPathForSelectedRow] animated:YES]; }
这样就可以自定义选中效果啦。问题来拉,当选中一个cell时,你会发现这个cell 想临的cell 的分割线没啦(按下cell ,没有弹起,遮罩显示时)。
这™明显bug ,在ios7之后。
这个里面的回答都试过遍了还是不行。
自己搞吧,决定不用系统的分割线,自己加一个试试看。
在你cell 的基类中或 自定义cell 中添加这两个方法
/** * 设置分割线 , separatorInset 不一定能实现 * 解决选中cell selectedBackgroundView 显示时 分割线显示不全 * 问题参见:http://stackoverflow.com/questions/19212476/uitableview-separator-line-disappears-when-selecting-cells-in-ios7 * @param insets insets description */ -(void)setSeparatorWithInset:(UIEdgeInsets)insets{ for (int i = ([self.contentView.superview.subviews count] - 1); i >= 0; i--) { UIView *subView = self.contentView.superview.subviews[i]; if ([NSStringFromClass(subView.class) hasSuffix:@"SeparatorView"]) { subView.hidden = YES; subView.frame = CGRectMake(insets.left, insets.top,self.width - insets.left - insets.right, subView.height-insets.bottom - insets.top); UIView *separatorView = [[subView superview] viewWithTag:10456]; if (!separatorView) { separatorView = [[UIView alloc] initWithFrame:subView.frame]; separatorView.tag = 10456; [[subView superview] addSubview:separatorView]; }else{ separatorView.backgroundColor = [subView backgroundColor];//[UIColor redColor]; separatorView.frame = subView.frame; } [[subView superview] bringSubviewToFront:separatorView]; break; } } }
-(void)setSeparatorColorWithColor:(UIColor *)sepColor{ for (int i = ([self.contentView.superview.subviews count] - 1); i >= 0; i--) { UIView *subView = self.contentView.superview.subviews[i]; if ([NSStringFromClass(subView.class) hasSuffix:@"SeparatorView"]) { if (sepColor) { subView.hidden = YES; subView.backgroundColor = sepColor; UIView *separatorView = [[subView superview] viewWithTag:10456]; if (separatorView) { separatorView.backgroundColor = sepColor; }else{ separatorView = [[UIView alloc] initWithFrame:subView.frame]; separatorView.tag = 10456; [[subView superview] addSubview:separatorView]; } [[subView superview] bringSubviewToFront:separatorView]; } break; } } }
一个是设置分割线frame 的 一个是设置颜色。
其中遍历cell的subview 倒序。(提高效率)找到分割线,隐藏掉,重写一个view 加在分割线的superview 上。这样上面问题中使用selectedBackgroundView选中cell 时影响分割线的问题就解决啦。
注:tableview 使用section展示好像没事(把cell 都放到section 里),我项目设置页面就是这样没有问题使用selectedBackgroundView。当只有一个section时会出现上述问题。
最后我去回答下stackoverflow上得问题。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。