iOS UITableViewCellSelectionStyleBlue 不起作用怎么办

简介: iOS UITableViewCellSelectionStyleBlue 不起作用怎么办

请运用如下代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{ 
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell==nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
}
UIView *bgColorView = [[UIView alloc] init];
bgColorView.backgroundColor = [UIColor blueColor];
bgColorView.layer.masksToBounds = YES;
cell.selectedBackgroundView = bgColorView;
    return cell;
}


目录
相关文章
|
iOS开发
iOS CAEmitterLayer 属性介绍
iOS CAEmitterLayer 属性介绍
45 0
|
Swift iOS开发
iOS @available 和 #available 的用法
iOS @available 和 #available 的用法
407 0
|
编译器 iOS开发
iOS respondsToSelector方法
iOS respondsToSelector方法
168 0
|
API iOS开发 算法
IOS 30多个iOS常用动画,带详细注释
<div class="bar" style="padding-left:45px; font-family:Consolas,'Courier New',Courier,mono,serif; line-height:26px; background-color:rgb(231,229,220)"> <div class="tools" style="padding:3px 8px 1
2362 0
|
iOS开发
iOS 只有视频横屏解决方法
iOS 只有视频横屏解决方法
214 0
|
iOS开发
iOS11中AppIcon设置无效的问题
iOS11中AppIcon设置无效的问题
445 0
|
缓存 iOS开发
iOS启动画面不更新的问题
iOS启动画面不更新的问题
169 0
|
iOS开发
iOS UILabe及UIFont用法总结
iOS UILabe及UIFont用法总结
212 0
|
存储 开发工具 iOS开发