如何在 Objective c 中连接两个图像?
我有两个 UIImageView,我想将它们连接成一个 UIImageView。让您知道,这些图像具有一定的透明度,因此您可以看到它们。而且它们的尺寸相同。
I have two UIImageView
's, and I want to concatenate them both to be one UIImageView
. To let you know, the images have some transparency to them so you will see both of them. Als they are the same size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你想将一个 imageView 覆盖在另一个 imageView 上,只需将其背景颜色设置为清除并将其移动到上面,可以使用 IB 或直接通过代码设置其框架。
If you want to overlay one imageView over another, just set its backgroundColor to clear and move it over, either using IB or directly setting its frame via code.
嘿,如果您使用两个静态图像视图,那么您可以通过使用此代码拍摄屏幕截图来完成此操作
希望这会有所帮助。
hey if you are using two static image-views then you can do the this by taking the screen-shot with this code
Hope this helps.