gpt4 book ai didi

iphone - ImageView contentMode 在视网膜和非视网膜显示中不同

转载 作者:行者123 更新时间:2023-11-29 04:20:14 25 4
gpt4 key购买 nike

所以我有这个 UIImageView ,上面有一个图像。当我使用普通的 iPhone 显示屏时,它在 UIImageView 内完全按照预期显示 - 在 UIImageView 范围内,问题是当我使用视网膜显示设备时,图像变大并且不适合 UIImageView 边界,它遍布屏幕。

如何解决这个问题?我希望 Retina 显示屏中的图像适合 UIImageView 尺寸。

这是我的代码:

- (UIImage *)loadScreenShotImageFromDocumentsDirectory
{
UIImage * tempimage;
NSArray *sysPaths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES );
NSString *docDirectory = [sysPaths objectAtIndex:0];
NSString *filePath = [NSString stringWithFormat:@"%@/MeasureScreenShot.png", docDirectory];
tempimage = [[UIImage alloc] initWithContentsOfFile:filePath];

return tempimage;
}

- (void)viewDidLoad
{
// Setting the image
UIImage * Image = [self loadScreenShotImageFromDocumentsDirectory];
theImageView.frame = CGRectMake(0, 166, 290, 334);
theImageView.contentMode = UIViewContentModeCenter;
theImageView.image = Image;
}

提前致谢!

最佳答案

尝试将内容模式设置为UIViewContentModeScaleAspectFit

关于iphone - ImageView contentMode 在视网膜和非视网膜显示中不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13069596/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com