gpt4 book ai didi

ios - UIImageView在UITableViewCell中不可见

转载 作者:行者123 更新时间:2023-12-01 16:56:59 26 4
gpt4 key购买 nike

我在UITableView单元格中添加了UIImageView,但是它不可见。
但是,当您选择该行时,该图像是可见的,因此非常困惑。
你能帮助我吗 ?

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier: (NSString *) reuseIdentifier    
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
cellImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"one.png"]];
cellImage.frame = CGRectMake(240, 0, 20, 20);
[self.contentView addSubview:cellImage];
self.textLabel.text = @"parent";
}
return self;
}

最佳答案

您应该只将cellImage添加为 accessoryView

[cell setAccessoryView: cellImage];

关于ios - UIImageView在UITableViewCell中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10859685/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com