我有一个 UIScrollView,我在其中将 contentSize 设置为最初的屏幕大小.那么这是否意味着如果我在滚动视图中有一个 UIImageView 那么它不能放大到大于我设置的 contentSize ?
I have a UIScrollView in which I've set the contentSize to the size of the screen initially. So does this mean that if I have an UIImageView inside the scroll view then it can't zoom bigger than the contentSize I've set?
因为我最初有一个 UIScrollView 和手机尺寸的 contentSize 并且当我放大图像时,它做得很好(我可以看到 contentSize 随着我放大而变大)但是当我手动调整它时它不能.这是为什么呢?
Because I initially have a UIScrollView with a contentSize of the phone's dimension and when I zoom into an image, it does it just fine (I can see the contentSize grows bigger as I zoom in) but when I adjust it manually it can't. Why is this?
我认为当我最初初始化 UIScrollView 框架时,内容大小将设置为框架的大小,但是当我放大时它可以动态增长.但是当我尝试设置 contentSize,现在好像已经修复了.我问这个的原因是因为我在 UIScrollView 中有一个 UIImageView,当我放大图像并旋转图像时,我想要 contentSize 重置.问题是如何重置?
I think when I initially initialize the UIScrollView frame, the content size will be set to the frame's size, however it can grow dynamically as I zoom in. However when I try to set the contentSize, it seems that now it's fixed. The reason why I am asking this is because I have a UIImageView inside a UIScrollView, when I zoom in on the image and I rotate the image, I want the contentSize to reset. Question is how do I reset this?
缩放级别由 UIScrollView 的 zoomScale 属性设置.其最大值和最小值分别由 maximumZoomScale 和 minimumZoomScale 设置.
The zoom level is set by the zoomScale property of the UIScrollView. Its maximum and minimum is set by maximumZoomScale and minimumZoomScale respectively.
如果您尝试通过设置 contentSize 来设置缩放,那么您做错了.contentSize 应该设置为好像缩放比例是 1.0 然后你只需将 zoomScale 属性设置为你想要的例如 2.0 如果你想放大到 200%.
If you're trying to set the zoom by setting the contentSize then you're doing it wrong. The contentSize should be set as if the zoom scale was 1.0 and then you'd just set the zoomScale property to be what you wanted so for example 2.0 if you wanted it zoomed in to 200%.
您可能会在缩放时看到 contentSize 发生变化,因为我认为滚动视图报告它已缩放到当前缩放比例.
You're probably seeing contentSize change as you zoom because I think the scroll view reports it scaled to the current zoom scale.
这篇关于UIScrollView 的内容大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
iOS UIScrollView 延迟加载iOS UIScrollView Lazy Loading(iOS UIScrollView 延迟加载)
如何使用或不使用 ScrollView 使 ImageView 可缩放?how to make an ImageView zoomable with or without ScrollView.?(如何使用或不使用 ScrollView 使 ImageView 可缩放?)
如何在 iphone 应用程序开发中的导航栏上添加 1How can i add more than 10 buttons on a navigationbar in iphone application development?(如何在 iphone 应用程序开发中的导航栏上添加 10
UIScrollView 只能用一根手指滚动UIScrollView scrolling only with one finger(UIScrollView 只能用一根手指滚动)
在 UIScrollView 中使用 UITouchUsing UITouch inside a UIScrollView(在 UIScrollView 中使用 UITouch)
UitextField resignFirstResponder 在滚动视图中不起作用UitextField resignFirstResponder does not work in scroll view(UitextField resignFirstResponder 在滚动视图中不起作用)