创建具有图像精确大小的 UIImageVIew
如何从图像中检测到尺寸,然后使用该尺寸创建 UIImageView,使其完美适合内部图像?
How is the size detected from an image and then use that size to create a UIImageView, perfectly fitting the image inside?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需像这样创建 UIImageView:
所以 ImageView 具有图像的大小。来自 UIImageView 的文档:
希望我的回答对你有帮助。 :-D
桑德罗
Just create the UIImageView like this:
So the ImageView has the size of the image. From the Documentation of UIImageView:
I hope my answer helps you. :-D
Sandro
这里当我们在imageView中使用图像时不需要设置框架大小,
ImageView会自动获取图像的大小。
Here no need to set the frame size when we use the image in imageView
ImageView will automatically takes the size of image.