gpt4 book ai didi

ios - 为什么 Imageview 总是拉伸(stretch) show image stretched iOS?

转载 作者:可可西里 更新时间:2023-11-01 05:25:29 27 4
gpt4 key购买 nike

我正在使用 imageView,它包含不同的图像,但有些图像被拉伸(stretch)了。如何在没有任何拉伸(stretch)的情况下显示图像?我已将 contentMode 设置为 aspect fit。但是,图像不是 imageView 的大小,而是不同的大小。我想在不拉伸(stretch)的情况下显示相同大小的图像。

   imageview1 = [[UIImageView alloc]initWithFrame:CGRectMake(30, 10, 190, 190)];
imageview1.contentMode = UIViewContentModeScaleAspectFit;
imageview1.clipsToBounds = YES;

最佳答案

请在设置框架之前尝试设置内容模式,如下所示

 imageview1.contentMode = UIViewContentModeScaleAspectFit;
imageview1 = [[UIImageView alloc]initWithFrame:CGRectMake(30, 10, 190, 190)];
imageview1.clipsToBounds = YES;

关于ios - 为什么 Imageview 总是拉伸(stretch) show image stretched iOS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41440397/

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