ios – UITableViewCell子视图在选择时消失(但此子视图中的内容可见)

前端之家收集整理的这篇文章主要介绍了ios – UITableViewCell子视图在选择时消失(但此子视图中的内容可见)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的UITableViewCell的.m文件.
#import "ContentCardTableViewCell.h"
#import <QuartzCore/QuartzCore.h>

@implementation ContentCardTableViewCell


- (void)awakeFromNib {
    // Initialization code
    [self setBackgroundColor:[UIColor clearColor]];

}

- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated {
    [super setHighlighted:highlighted animated:animated];
    if (highlighted) {
        [self setBackgroundColor:[UIColor clearColor]];

        // Recover backgroundColor of subviews.
    }
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];
    if (selected) {
        [self setBackgroundColor:[UIColor clearColor]];

        // Recover backgroundColor of subviews.
    }
}


@end

但是这个UITableViewCell中的一个视图在选择时消失了.我尝试了thisthis以及更多但没有任何帮助.有什么我想念的吗?

解决方法

我有类似的问题.
如果我将selectionStyle设置为UITableViewCellSelectionStyleNone工作正常,问题解决了.
即;

在里面

– (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath


[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

在返回牢房之前.希望它有效.

原文链接:https://www.f2er.com/iOS/328242.html

猜你在找的iOS相关文章