目前我無法在看起來同時設置2種內容模式。但我希望圖像既縮放又居中。我該如何做到這一點?Center&Aspect Fit圖像
@property (weak, nonatomic) IBOutlet UIView *windowOut;
self.windowOut.layer.borderColor = [UIColor redColor].CGColor;
self.windowOut.layer.borderWidth = 3.0f;
UIImage *face = [UIImage imageNamed:@"face.png"];
UIImageView* imageView = [[UIImageView alloc] initWithFrame:self.windowOut.frame];
imageView.contentMode = UIViewContentModeScaleAspectFit;
imageView.contentMode = UIViewContentModeCenter;
[imageView setImage:face];
[self.windowOut addSubview:imageView];
此圖片與上面的代碼的結果:
此圖片的結果,當 「imageView.contentMode = UIViewContentModeCenter; 」 被註釋掉:
編輯: 此圖片是我註釋掉這兩個內容的結果:
不管'UIViewContentModeScaleAspectFit'居中嗎? –
不讓它移動大約10%,因爲一些奇怪的原因 – Esqarrouth
添加圖像... – Esqarrouth