UI1_UIScrollView

//
//  AppDelegate.m
//  UI1_UIScrollView
//
//  Created by zhangxueming on 15/7/10.
//  Copyright (c) 2015年 zhangxueming. All rights reserved.
//

#import "AppDelegate.h"
#import "ViewController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    ViewController *root = [[ViewController alloc] init];
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:root];
    self.window.rootViewController = nav;
    self.window.backgroundColor = [UIColor whiteColor];
    
    return YES;
}

 

//
//  ViewController.h
//  UI1_UIScrollView
//
//  Created by zhangxueming on 15/7/10.
//  Copyright (c) 2015年 zhangxueming. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UIScrollViewDelegate>

@end

 

//
//  ViewController.m
//  UI1_UIScrollView
//
//  Created by zhangxueming on 15/7/10.
//  Copyright (c) 2015年 zhangxueming. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    NSString *path = [[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"];
    UIImage *image = [UIImage imageWithContentsOfFile:path];
    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, image.size.width, image.size.height)];
    imageView.image = image;
    //[self.view addSubview:imageView];
    //创建滚动视图
    UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 64, self.view.frame.size.width, self.view.frame.size.height)];
    //设置内容视图的大小
    //跟imageView的大小相同
    scrollView.contentSize = CGSizeMake(imageView.frame.size.width, imageView.frame.size.height);
    [scrollView addSubview:imageView];
    scrollView.backgroundColor = [UIColor redColor];
    //消除导航栏的影响,显示的视图不被导航栏覆盖
    self.automaticallyAdjustsScrollViewInsets = NO;
    
    //隐藏滚动条
    //横向的指示条
    scrollView.showsHorizontalScrollIndicator = NO;
    //竖向的指示条
    scrollView.showsVerticalScrollIndicator = YES;
    
    //设置边界回弹
    scrollView.bounces = YES;
    //滚动视图的偏移, 相对于内容视图的偏移
    scrollView.contentOffset = CGPointMake(0, 0);
    //设置分页
    //必然有一个减速的过程
    scrollView.pagingEnabled = YES;
    //是否滚动
    scrollView.scrollEnabled = YES;
    
    //[scrollView setContentOffset:CGPointMake(-100, -100) animated:YES];
    //[scrollView flashScrollIndicators];
    
    //设置放大缩小的系数
    scrollView.delegate = self;
    scrollView.minimumZoomScale  = 0.2;
    scrollView.maximumZoomScale  = 3;
    
    [self.view addSubview:scrollView];
}


#pragma mark --UIScrollViewDelegate---
//视图发生滚动时调用
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    //NSLog(@"----滚动----");
}
//视图发生拖拽的时候调用
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
    NSLog(@"----拉拽----");
}

//拖拽结束时调用
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
    NSLog(@"decelerate = %i", decelerate);
    if (decelerate) {
        NSLog(@"拖拽减速");
    }
}
//返回要放大子视图
- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView
{
    NSLog(@"图片被放大");
    
    return [scrollView.subviews objectAtIndex:0];
}

//当有减速过程的时候才被调用
- (void)scrollViewWillBeginDecelerating:(UIScrollView *)scrollView
{
    NSLog(@"开始减速");
}
//如果设置分页使能, 那么该方法肯定被调用
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    NSLog(@"减速结束");
}



- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

 

转载于:https://www.cnblogs.com/0515offer/p/4638930.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值