FirstButton 是 Custom 类型的 UIButton。我通过编程将其中三个放在一个表的每个单元格中,因此:
[firstButton setImage:markImage forState:UIControlStateNormal];
[firstButton setContentMode:UIViewContentModeScaleAspectFit];
[cell.contentView addSubview:firstButton];
其他地方,我告诉它剪辑到界限。我得到的是图像中心正方形的一个裁剪,而不是它的一个方面缩放渲染。我已经尝试了很多方法,包括在 firstButton.imageView 上设置 mode 属性,这似乎也不起作用。