1

我有一个UIImageView自定义的UITableViewCell,我想调整它的大小,我将它的视图模式设置为 LEFT。要调整大小,我正在应用以下代码。

[cell.IBImage setFrame:CGRectMake(201,12,50,20)];

我的图像宽度是 100,我想减小到 50,但它仍然以 100 的宽度显示我。如果我将查看模式设置为Scale To Fill它可以正常工作,但我希望将其查看模式设置为 LEFT。

完整的方法 cellForRowAtIndexPath 如下所示:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"DetailCell";

DetailCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"DetailCell" owner:self options:nil];

cell = (DetailCell *)[topLevelObjects objectAtIndex:0];

clsDetailResponse *Response = [self.Histories objectAtIndex:[indexPath row]];

[cell.IBUsernameLabel setText:[NSString stringWithFormat:@"%@ %@", Response.Firstname, Response.Lastname]];

[cell.IBImage setFrame:CGRectMake(201, 12, 50, 20)];

return cell;
}
4

3 回答 3

1

您正在调整 imageView 框架而不是图像的大小,以便您可以根据需要裁剪图像,

UIImage *ima = cell.image.image;
CGRect cropRect = CGRectMake(0, 0, 50,20);
CGImageRef imageRef = CGImageCreateWithImageInRect([ima CGImage], cropRect);
[cell.image setImage:[UIImage imageWithCGImage:imageRef]];
CGImageRelease(imageRef);
cell.image.frame=CGRectMake(10, 10, 50, 20);
于 2012-12-15T13:40:34.693 回答
0

在 DetailCell 类中设置 IBImage 帧

-(void)layoutSubviews:

方法

于 2012-12-15T08:56:46.477 回答
0

将以下行添加到文件的所有者,以确保它知道如何响应帧更改。

    [self setAutoresizingMask:UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth];
    [self setClipsToBounds:YES];
    [self setAutoresizesSubviews:YES];
于 2012-12-15T09:21:33.163 回答