如何动态调整UIScrollview的大小
好吧,我正在使用 UIScrollview 缩放图像。我的 UIScrollview 大小是固定的,所以每当我缩放图像时,它就会被剪切。我想在缩放图像时执行此操作,UIScrollview 也会根据图像增加高度和宽度飞涨.. 任何建议将不胜感激......
well i working with to zoom image with UIScrollview..my UIScrollview size is fix so whenever i make a zoom of a image then it goes cut..i wanna do that as i zoom the image the UIScrollview also increse height and width as per image zoom..
any suggetions will be appreciated......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可行:-)
viewForZoomingInScrollView
中返回 UIimageView将其放入你的 .h 文件:
并记住合成并释放
imageView
将其放在你想要制作滚动视图的位置:
添加 UIScrollView 委托方法
更新:
在添加上述解决方案时我误解了这个问题。这应该可以做到:-)
kScrollViewAddSize
是一个常量,它定义添加到 UIScrollView 大小的量。在您的 .h 文件中,您应该添加以下内容:
记住综合并释放它们。
在
viewDidLoad
中添加要创建 UIScrollView 的部分并添加两个委托方法。This should work :-)
viewForZoomingInScrollView
Put this into your .h file:
And remember to synthesize and release
imageView
Put this where you want to make your scroll view:
Add the UIScrollView delegate method
UPDATE:
I misunderstood the question when adding the above solution. This should do it :-)
kScrollViewAddSize
is a constant which defines the amount to add to the UIScrollView's size.In your .h file you should add the following:
Remember to synthesize and release them.
Add the parth in
viewDidLoad
where you want to create your UIScrollView and add the two delegate methods.