gpt4 book ai didi

ios - 使用自定义 UITableViewCell 时, ImageView 框架为零

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:05:16 31 4
gpt4 key购买 nike

我创建了一个自定义的 UITableViewCell ,但想使用单元格中的标准 UIImageView。

我注意到框架总是归零,这给我带来了问题

@implementation MyCustomCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
// the style is "default" style
self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier];
// I need to override the cells image
if (self) {
self.imageView.image = [UIImage imageNamed:@"MyImageToUseInThisCell"]; // The image view frame is {0,0,0,0}
}
return self;
}

最佳答案

您不会在 -initWithStyle:reuseIdentifier: 中获得任何帧大小,因为单元格尚未加载,这意味着 subview 尚未创建然而(nil)因此帧大小为 0。
即使对于 viewController,您也不会在 -initWithNibName: 方法中获取帧大小。

你会更好:

  1. -layoutSubviews 中构建特定的相关内容
  2. -awakeFromNib 中设置初始属性(或直接通过 IB)

无论如何,试试这个:

//does this method even run? it shouldn't for a custom UITableViewCell
//unless you've mixed up things unnecessarily
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
NSLog(@"initWithStyle -- %@",self.myImageView);
}
return self;
}

//do frame related stuff here
-(void)layoutSubviews
{
//fyi: this method is called anytime any frame changes

NSLog(@"layoutSubviews -- %@",self.myImageView);
}

- (void)awakeFromNib
{
//fyi: this method is called when the view is pulled from the IB

// Initialization code
NSLog(@"awakeFromNib -- %@",self.myImageView);

//do you thang here
[self.myImageView setImage:[UIImage imageNamed:@"MyImageToUseInThisCell"]];
}

关于ios - 使用自定义 UITableViewCell 时, ImageView 框架为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24104200/

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