HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了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];

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

大佬总结

以上是大佬教程为你收集整理的ios – UITableViewCell子视图在选择时消失(但此子视图中的内容可见)全部内容,希望文章能够帮你解决ios – UITableViewCell子视图在选择时消失(但此子视图中的内容可见)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。