IOS: add imageview in a scrollview to have zoom(IOS:在滚动视图中添加图像视图以进行缩放)
本文介绍了IOS:在滚动视图中添加图像视图以进行缩放的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想用 UIImage
设置 UIImageView 并将这个 imageview 放在 UIScrollView
中以获得这个图像的缩放;我希望这个 UIImageView
和 UIScrollView
适合视图中心的矩形...有可能吗?
解决方案
- 将您的视图控制器设置为
<UIScrollViewDelegate>
- 将
UIScrollView
绘制为视图中心矩形所需的大小.将检查器中的最大缩放设置为大于 1 的值.例如 4 或 10. - 右键单击滚动视图并将代理连接到您的视图控制器.
- 在
UIScrollView
中绘制您的UIImageView
并使用您想要的任何图像进行设置.使其与UIScrollView
的大小相同. - Ctrl + 将
UIImageView
拖动到 View 控制器的.h
中,为UIImageView
创建一个IBOutlet
code>,把它称为imageView
之类的聪明东西. 添加此代码:
<块引用>-(UIView *) viewForZoomingInScrollView:(UIScrollView *)scrollView{返回self.imageView;}
运行应用程序并捏合和平移,直到心满意足.
I want to set a UIImageView with a UIImage
and put this imageview inside a UIScrollView
to obtain a zoom of this image;
and I want this UIImageView
and UIScrollView
to fit in the rect at the center of the view...is it possible?
解决方案
- Set your view controller up as a
<UIScrollViewDelegate>
- Draw your
UIScrollView
the size you want for the rectangle at the center of the view. Set the max zoom in the inspector to something bigger than 1. Like 4 or 10. - Right click on the scroll view and connect the delegate to your view controller.
- Draw your
UIImageView
in theUIScrollView
and set it up with whatever image you want. Make it the same size as theUIScrollView
. - Ctrl + drag form you
UIImageView
to the.h
of your View controller to create anIBOutlet
for theUIImageView
, call it something clever likeimageView
. Add this code:
-(UIView *) viewForZoomingInScrollView:(UIScrollView *)scrollView { return self.imageView; }
Run the app and pinch and pan til your heart's content.
这篇关于IOS:在滚动视图中添加图像视图以进行缩放的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:IOS:在滚动视图中添加图像视图以进行缩放
基础教程推荐
猜你喜欢
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01