uiimageview如何显示实际宽度和高度

发布于 2024-10-10 19:57:58 字数 83 浏览 6 评论 0原文

您好,我正在 UIImageview 中显示图像,有些图像很小,有些很大。

如何根据实际宽度和高度自动显示图像?

请帮忙

Hi I am displaying images in UIImageview and some images are small and some are big.

how to auto-display the images as per the actual width and height.?

please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁吢 2024-10-17 19:57:58

您应该将 imageview.frame 设置为相应的值(从 UIImage.size 借用)。

You should set imageview.frame to corresponding value (borrowed from UIImage.size).

梦里兽 2024-10-17 19:57:58

将 UIImageView 框架设置为 UIImage 的大小,

就像这样

UIImage *aImage = [UIImage imageNamed:@"yourImage.png"];
yourImageView.bounds = CGRectMake(0, 0, aImage.size.width, aImage.size.height);

Set the UIImageView frame to be the size of the UIImage

Something like this

UIImage *aImage = [UIImage imageNamed:@"yourImage.png"];
yourImageView.bounds = CGRectMake(0, 0, aImage.size.width, aImage.size.height);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文