博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发——缩放图片
阅读量:5056 次
发布时间:2019-06-12

本文共 964 字,大约阅读时间需要 3 分钟。

  捏合图片,在原imageView中放大缩小图片。

  懒得多说,直接上代码:

//

//  ViewController.m

//  Demo-hehehe

//

//  Created by yyt on 16/4/25.

//  Copyright © 2016年 yyt. All rights reserved.

//

 

#import "ViewController.h"

 

@interface ViewController ()<UIScrollViewDelegate>{

    UIImageView *imageView;

}

 

@end

 

@implementation ViewController

 

 

- (void)viewDidLoad {

    [super viewDidLoad];

 

    UIScrollView *scrollview=[[UIScrollView alloc]initWithFrame:CGRectMake(20, 80, self.view.bounds.size.width-40, 300)];

    scrollview.delegate=self;

    scrollview.maximumZoomScale=5.0;

    scrollview.minimumZoomScale=0.5;

    [self.view addSubview:scrollview];

    

    imageView = [[UIImageView alloc] initWithFrame:CGRectMake(20, 80, self.view.bounds.size.width-40, 300)];

    imageView.image =[UIImage imageNamed:@"22"];

    imageView.userInteractionEnabled = YES;

    [scrollview addSubview:imageView];

}

 

-(UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView{

    return imageView;

}

 

@end

转载于:https://www.cnblogs.com/yyt-hehe-yyt/p/5431506.html

你可能感兴趣的文章
写博客
查看>>
利用循环播放dataurl的视频来防止锁屏:NoSleep.js
查看>>
python3 生成器与迭代器
查看>>
java编写提升性能的代码
查看>>
ios封装静态库技巧两则
查看>>
Educational Codeforces Round 46 (Rated for Div. 2)
查看>>
Abstract Factory Pattern
查看>>
C# 实现Bresenham算法(vs2010)
查看>>
基于iSCSI的SQL Server 2012群集测试(一)--SQL群集安装
查看>>
list 容器 排序函数.xml
查看>>
存储开头结尾使用begin tran,rollback tran作用?
查看>>
Activity启动过程中获取组件宽高的五种方式
查看>>
java导出Excel表格简单的方法
查看>>
SQLite数据库简介
查看>>
利用堆实现堆排序&amp;优先队列
查看>>
Mono源码学习笔记:Console类(四)
查看>>
Android学习路线(十二)Activity生命周期——启动一个Activity
查看>>
《Genesis-3D开源游戏引擎完整实例教程-跑酷游戏篇03:暂停游戏》
查看>>
CPU,寄存器,一缓二缓.... RAM ROM 外部存储器等简介
查看>>
windows下编译FreeSwitch
查看>>