iOS 图片点击放大, 再次点击缩小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 图片点击放大, 再次点击缩小相关的知识,希望对你有一定的参考价值。
XWScanImage 是一个自定义的类, 评论留Q 发
ImageView = [[UIImageView alloc]init];
ImageView.backgroundColor = SetColor(160, 160, 160);
//为UIImageView1添加点击事件
UITapGestureRecognizer *tapGestureRecognizer1 = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(scanBigImageClick1:)];
[ImageView addGestureRecognizer:tapGestureRecognizer1];
#pragma mark 图片的点击放大缩小
-(void)scanBigImageClick1:(UITapGestureRecognizer *)tap{
NSLog(@"点击图片");
UIImageView *clickedImageView = (UIImageView *)tap.view;
[XWScanImage scanBigImageWithImageView:clickedImageView];
}
以上是关于iOS 图片点击放大, 再次点击缩小的主要内容,如果未能解决你的问题,请参考以下文章
iOS-UIImageView点击图片放大,再次点击恢复原始尺寸