如何在 iOS 中以编程方式显示全尺寸图像
在我的 iOS 应用程序中,我想缩放显示图像。当点击图像时,它应该显示完整视图并返回。
如何在 iOS 中以编程方式全屏查看图像?
In my iOS application I want to display images in zoom. When tap the image it should comes to full view and back.
How do I view images in full screen programmatically in iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为您的屏幕添加一个图像视图,无论您想要什么,
如果您想返回,都可以在该图像视图上显示图像,只需单击按钮或计时器即可删除图像视图,无论您想要使用什么
Add an imageview for your screen what ever you want, display image on that using
if you want back just remove imageview on a button click or timer what ever you wane using
请参阅
contentMode
="https://developer.apple.com/documentation/uikit/uiimageview" rel="nofollow noreferrer">UIImageView
为UIViewContentModeScaleAspectFit
和UIViewContentModeCenter 用于显示图像。
See the
contentMode
ofUIImageView
asUIViewContentModeScaleAspectFit
andUIViewContentModeCenter
in display of images.