0

我有一个 UITableViewCell,我正在使用它的 UIImageView,我有一个大小为 25,25 的图像,我用它来设置 UIImageView。问题是当我点击单元格时,图像大小会调整为行高,这不是我想要的。我希望它保持固定在 25,25。这可能吗?这是我的代码:

  cell.imageView.bounds = CGRectMake(cell.imageView.origin.x, cell.imageView.origin.y, 25, 25);
        cell.imageView.frame = cell.imageView.bounds;
        cell.imageView.autoresizingMask = UIViewAutoresizingNone;
        cell.imageView.clipsToBounds = YES;
        cell.imageView.layer.borderWidth = 0;
        cell.imageView.layer.borderColor = [UIColor blackColor].CGColor;
4

1 回答 1

1

是的,这是可能的,但您必须通过子类 UITableViewCell 创建自己的 UITableViewCell 并添加具有固定大小的 UIImageView

于 2012-09-28T21:39:48.300 回答