gpt4 book ai didi

ios - 如何在 AspectFit 比率后调整 UIImageView 的大小

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:06:27 25 4
gpt4 key购买 nike

如何在将其内容模式设置为 UIViewContentModeScaleAspectFit 后调整 UIImageView 的大小,以便我可以删除顶部和下方的空白区域。请看附图
image

提前致谢:)

最佳答案

希望这对其他人也有帮助,如果它在某些情况下会中断,请发表评论:)

- (CGRect)frameForImageattribute:(CGSize)image inImageViewAspectFit:(UIImageView *)imageView {
float imageRatio = image.width / image.height;
float viewRatio = imageView.frame.size.width / imageView.frame.size.height;
if (imageRatio < viewRatio) {
float scale = imageView.frame.size.height / image.height;
float width = scale * image.width;
return CGRectMake(kLeftPading, kTopPading, width, imageView.frame.size.height);
}
else {
float scale = imageView.frame.size.width / image.width;
float height = scale * image.height;
return CGRectMake(kLeftPading, kTopPading, imageView.frame.size.width, height);
}
}

关于ios - 如何在 AspectFit 比率后调整 UIImageView 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23042546/

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