如何将imageview内的图片移动到imageView的上端?

发布于 2024-10-08 15:05:26 字数 162 浏览 2 评论 0原文

我有一个带有 contentMode UIViewContentModeScaleAspectFit 的 imageView。因此它可以在不改变纵横比的情况下调整图像大小。但 imageview 内的图像是水平和垂直居中的。

我不希望它垂直居中。如何将该图像移动到 imageview 的上端?

I have an imageView with contentMode UIViewContentModeScaleAspectFit. So it resizes the image without changing the aspect ratio. But the image inside the imageview is horizontally and vertically centred.

I don't want it to be vertically centred. How can I move this image to the upper end of imageview?

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

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

发布评论

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

评论(1

潇烟暮雨 2024-10-15 15:05:26

我认为你应该制作一个自定义 UIView,其中你可以拥有 UIImage 属性(就像 UIImageView 一样),并且你需要覆盖 UIView 的“drawRect”方法并使用 [image drawInRect:rect] 在适当的位置绘制图像;方法,检查文档,您会在绘图时找到有关宽高比的内容...

在 UIImageView 中,图像的 x,y 位置无法更改..

I think you should make a custom UIView in which you can have UIImage property (just like UIImageView has) and you need to over ride 'drawRect' method of UIView and draw the image at appropriate position using [image drawInRect:rect]; method, check the documentation you will find stuff about aspect ratio as well while drawing...

In UIImageView, image's x,y position can't be changed..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文