滚动视图子视图中的自动调整大小问题
我在 UIView
上有一个滚动视图,并且一系列 UIImageViews
以串行方式放置在滚动视图上。我的问题是,当设备旋转时,图像视图的大小不会调整。在 viewWillAppear
中,我添加了
imageView.autoresizingMask=UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
FirstScrollView.autoresizingMask=UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
有人能帮助我吗?
I have a scrollview on a UIView
and a series of UIImageViews
are placed on the scrollview in a serial manner. My problem is that the image views are not resizing when the device is rotated. In the viewWillAppear
, I added
imageView.autoresizingMask=UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
FirstScrollView.autoresizingMask=UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
Can anybody help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Interface builder 来设置它。
You can set it with Interface builder.