UITableViewCell中的UIImageView调整为行高

时间:2012-09-28 20:48:47

标签: iphone objective-c ios ipad

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

1 个答案:

答案 0 :(得分:1)

是的,但是你必须通过子类UITableViewCell创建自己的UITableViewCell并添加固定大小的UIImageView