-1
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *CellIdentifier = @"Cell";

        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }

    // Set the data for this cell:

        cell.textLabel.text = [namesArray objectAtIndex:indexPath.row];
        cell.textLabel.textColor = [UIColor grayColor];
        cell.textLabel.font = [UIFont fontWithName:@"Trebuchet MS" size:14];
        cell.textLabel.textAlignment = UITextAlignmentLeft;

        cell.imageView.image = [UIImage imageNamed:[imagesArray objectAtIndex:indexPath.row ]];
        UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 5, 5)];
        imgView.image = [UIImage imageNamed:[imagesArray objectAtIndex:indexPath.row ]];
        cell.imageView.image = imgView.image;

        [cell.imageView setFrame:CGRectMake(0, 0, 55, 55)];

        cell.selectionStyle = UITableViewCellSelectionStyleGray;

       return cell;
}

在这里我只是TableView不使用UITableViewCell,但我想调整图像的大小TableView。我查看了互联网上的许多示例,但是我不明白它们中的任何一个是如何工作的 - 我无法调整它们的大小TableView。有人可以解释如何让它工作吗?[cell.imageView setFrame:CGRectMake(0, 0, 55, 55)]; 不管用

4

3 回答 3

1

在这里,我放置了裁剪和调整图像大小的逻辑,根据您的要求使用它。

对于获取裁剪图像:

UIImage *croppedImg = nil;
CGRect cropRect = CGRectMake(AS YOu Need); // set frame as you need
croppedImg = [self croppIngimageByImageName:self.imageView.image toRect:cropRect];

以下方法返回UIImage作为您想要的图像大小

- (UIImage *)croppIngimageByImageName:(UIImage *)imageToCrop toRect:(CGRect)rect
    {
        //CGRect CropRect = CGRectMake(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height+15);

        CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect);
        UIImage *cropped = [UIImage imageWithCGImage:imageRef];
        CGImageRelease(imageRef);

        return cropped;
    }

在这里,您将获得通过上述方法返回的裁剪图像;

或调整大小

并且还使用以下具有特定图像高度宽度的方法来调整大小:

+ (UIImage*)resizeImage:(UIImage*)image withWidth:(CGFloat)width withHeight:(CGFloat)height
{
    CGSize newSize = CGSizeMake(width, height);
    CGFloat widthRatio = newSize.width/image.size.width;
    CGFloat heightRatio = newSize.height/image.size.height;

    if(widthRatio > heightRatio)
    {
        newSize=CGSizeMake(image.size.width*heightRatio,image.size.height*heightRatio);
    }
    else
    {
        newSize=CGSizeMake(image.size.width*widthRatio,image.size.height*widthRatio);
    }


    UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
    [image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
    UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return newImage;
}

此方法返回NewImage,具有您想要的特定大小。

于 2013-11-11T06:08:09.540 回答
1

如果要自定义单元格的方面(例如图像视图的大小),则需要使用自定义UITableViewCell. 目前,您使用的标准单元格UITableViewCellStyleDefault不允许您自定义图像视图的大小。

在情节提要或 Xib 文件中创建一个UITableViewCell,将其添加到您的图像视图并将其标签设置为一个数字。之后,您需要检索单元格以进行配置:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"CellIdentifier";
    UITableViewCell *cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    UIImageView *imageView = (UIImageView *) [cell viewWithTag:TAG_NUMBER];
    // do your stuff

    return cell;
}
于 2013-11-11T06:08:19.297 回答
0

也许你可以做这样的事情。只需在单元格的 contentView 下添加一个新的 imageView 至少它会更容易设置框架。

只是为了澄清你已经在使用 UITableviewCell。

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

static NSString *CellIdentifier = @"Cell";

   UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
// Create a new imageview to have your desired frame

  UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 5, 5)];

 // Add tag 
  imgView.tag = 100;

// Add the imageView to the contentView of the cell
 [cell.contentView addSubview:imgView];

}

// Other codes


UIImageView *imageV = (UIImageView *)[cell.contentView viewWithTag:100];
// Assign Image here
imageV.image = [UIImage imageNamed:[imagesArray objectAtIndex:indexPath.row ]];


cell.selectionStyle = UITableViewCellSelectionStyleGray;

   return cell;
}
于 2013-11-11T06:08:47.853 回答