问题描述
我想在 UIImageView
中使用 UIViewContentModeScaleAspectFit
时控制图像对齐。
I want to control the image alignment when using the UIViewContentModeScaleAspectFit
in UIImageView
.
例如,我在上面的一个视图中有两个 UIImageView
。这两个 UIImageView
的contentMode是 UIViewContentModeScaleAspectFit
。现在我想将图像3设置为右对齐,将图像4设置为左对齐,以便这两个图像可以在一起。
For example, I have two UIImageView
in one view as above.these two UIImageView
's contentMode is UIViewContentModeScaleAspectFit
. Now I want to set image 3 to align right and image 4 to align left, so that these two images can be together.
我尝试将contentMode设置为 UIViewContentModeScaleAspect | UIViewContentModeLeft
,但这会让事情变得更糟。
I try to set the contentMode to UIViewContentModeScaleAspect|UIViewContentModeLeft
, but it make things worse.
任何建议都表示赞赏。
推荐答案
最后,我发现项目可以解决这个问题。
Finally, I find UIImageViewAligned project which can work it out.
这篇关于将contentMode设置为UIViewContentModeScaleAspectFit时,如何设置UIImageView左对齐或右对齐?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!