0

我想知道如何将图像视图动态设置为表格视图单元格的中心。

这是我当前的代码。

UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(100,100, 20, 20)];


imgView.image = [UIImage imageNamed:@"friendsCelluserpic.png"];


cell.imageView.image = imgView.image;
4

3 回答 3

1

试试这个代码:这将使您的图像在 TableViewCell 中水平居中对齐

    float imgwidth=40;
    float imgheight=40;

    imgView = [[[UIImageView alloc] initWithFrame:CGRectMake((cell.contentView.bounds.size.width/2)-(imgwidth/2),15, imgwidth, imgheight)] autorelease];

    [cell.contentView addSubview:imgView];
于 2013-08-28T07:40:32.007 回答
1

尝试这个, :)

UIImageView * imgView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"friendsCelluserpic.png"]];
imgView.frame=CGRectMake(100, 100, 20, 20);

[cell.contentView addSubview:imgView];
return cell;
于 2013-08-28T08:11:33.203 回答
0

你可以这样编码[cell.contentView addSubview:imgView];

于 2013-08-28T07:25:06.323 回答