IOS-手势图片点击放大

需要实现的效果:
当点击一张图片时,可以扩大到整个屏幕.再次点击时缩小到原来的大小
实现思路:
1.封装一个继承UIImageView的类,再定义一个imageview和scrollview的属性
2.再初始化方法中调用创建子视图的方法(记得给UIImageView打开用户交互),初始化scrollview和Imageview,并且把scrollview添加到self.window上,Imageview添加到scrollview上
3.给self和属性Imagevie 添加手势,两个手势方法控制图片的缩小和放大,图片放大是将scrollview的frame给属性imageview并隐藏self;图片缩小是将self的frame给属性image view并把self的hidden值设置为NO,scrollview也从父视图中移除,当点击self时可实现放大图片,当点击Imageview可实现还原图片.
代码实现:

#import <UIKit/UIKit.h>

@interface ZoomImgView : UIImageView
@property(nonatomic,strong)UIScrollView *scrollView;
@property(nonatomic,strong)UIImageView *imgView;
@end
#import "ZoomImgView.h"

@implementation ZoomImgView

-(instancetype)initWithFrame:(CGRect)frame{
    
    if ([super initWithFrame:frame]) {
        [self _inteTap];
    }
    return self;
}

- (void)_inteTap{
    self.userInteractionEnabled = YES;
    
    //添加手势
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapBig)];
    
    [self addGestureRecognizer:tap];
}

- (void)tapBig{
    //弹出来的视图
    [self creactSubView];
    //放大的动画
    [UIView animateWithDuration:.3 animations:^{
       
        _imgView.frame = _scrollView.frame;
        _scrollView.backgroundColor = [UIColor blackColor];
        self.hidden = YES;
    }];
}

- (void)creactSubView{
    _scrollView = [[UIScrollView alloc] initWithFrame:[UIScreen mainScreen].bounds];
    _scrollView.showsHorizontalScrollIndicator = NO;
    _scrollView.showsVerticalScrollIndicator = NO;
    [self.window addSubview:_scrollView];
   CGRect frame = [self convertRect:self.bounds toView:self.window];
    _imgView = [[UIImageView alloc] initWithFrame:frame];
    
    _imgView.image = self.image;
    
    _imgView.userInteractionEnabled = YES;
    //添加手势
    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(smallTap)];
    [_imgView addGestureRecognizer:tap];
    [_scrollView addSubview:_imgView];
    
}
- (void)smallTap{
    
    [UIView animateWithDuration:.3 animations:^{
       
        _imgView.frame = self.frame;
        
    } completion:^(BOOL finished) {
        self.hidden = NO;
        [_scrollView removeFromSuperview];
        
    }];
}
@end
#import "ViewController.h"
#import "ZoomImgView.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    ZoomImgView *imgView = [[ZoomImgView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
    imgView.image = [UIImage imageNamed:@"nn.png"];
    [self.view addSubview:imgView];
}
@end

![Uploading 图片放大_952149.gif . . .]

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • *7月8日上午 N:Block :跟一个函数块差不多,会对里面所有的内容的引用计数+1,想要解决就用__block...
    炙冰阅读 7,347评论 1 14
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥ios动画全貌。在这里你可以看...
    每天刷两次牙阅读 12,722评论 6 30
  • -- iOS事件全面解析 概览 iPhone的成功很大一部分得益于它多点触摸的强大功能,乔布斯让人们认识到手机其实...
    翘楚iOS9阅读 8,156评论 0 13
  • 问津十八岁那年在冬天写了一封很长的信,蔚蓝色的信签纸平铺于桌面,带着回忆,开篇第一句:你知道雪为什么是白色的吗? ...
    七嘟爻阅读 3,698评论 7 8
  • 发现最近喜欢上了儿童读物,像:怎么样和小孩相处啊,儿童的世界是怎么样的,给孩子最好的成长是什么,童话故事……等等,...
    一直走别回头M阅读 2,507评论 0 0

友情链接更多精彩内容