我有一个 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;