ios开发学习系列iOS分享的demo首页投稿(暂停使用,暂停投稿)

iOS学习笔记11 UIScrollView基础学习

2016-06-14  本文已影响217人  点柈

UIScrollView简介

UIScrollView常见属性

@property(nonatomic)CGPointcontentOffset;
//这个属性用来表示UIScrollView滚动的位置(其实就是内容左上角与scrollView左上角的间距值)

@property(nonatomic)CGSizecontentSize;
//这个属性用来表示UIScrollView内容的尺寸,滚动范围(能滚多远)

@property(nonatomic)UIEdgeInsetscontentInset;
//这个属性能够在UIScrollView的4周增加额外的滚动区域,一般用来避免scrollView的内容被其他控件挡住

@property(nonatomic)BOOLbounces;
//设置UIScrollView是否需要弹簧效果

@property(nonatomic,getter=isScrollEnabled)BOOLscrollEnabled;
//设置UIScrollView是否能滚动

@property(nonatomic)BOOLshowsHorizontalScrollIndicator;
//是否显示水平滚动条

@property(nonatomic)BOOLshowsVerticalScrollIndicator;
//是否显示垂直滚动条

![Uploading 屏幕快照 2016-06-14 上午11.20.06_417453.png . . .]

UIScrollView代理

UIScrollView和delegate的通信 UIScrollView和delegate的通信
//遵守协议
self.scrollView.delegate= self;

下面就附上一个用sb实现的小demo。页面效果如下

页面效果

中间的拖可以上下左右拖动,而点击最上最下等四个按钮图片可以到相应的位置。

第一步:添加控件

添加控件

第二步:添加scrollview属性,关联相关方法

@property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
//最左
- (IBAction)left:(id)sender
{
}
//最上
- (IBAction)top:(id)sender
{
}
//最下
- (IBAction)bottom:(id)sender
{
}
//最右
- (IBAction)right:(id)sender
{
}

第三步:初始化内容,添加图片

- (void)viewDidLoad {
    [super viewDidLoad];
    UIImageView *imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"ace"]];
    
    [self.scrollView addSubview:imageView];
    self.scrollView.backgroundColor = [UIColor lightGrayColor];
    //设置内容大小
    self.scrollView.contentSize = imageView.image.size;
}

第四步:实现点击方法

- (IBAction)left:(id)sender
{
    //偏移量,记录UIScrollView 滚动的位置,有多少内容已经超出左上角
    [UIView animateWithDuration:0.5 animations:^{
        self.scrollView.contentOffset = CGPointMake(0 , self.scrollView.contentOffset.y);
    } completion:^(BOOL finished) {
        NSLog(@"执行完毕最左");
    }];
    
    //打印偏移量
    NSLog(@"---%@",NSStringFromCGPoint(self.scrollView.contentOffset));
}
- (IBAction)top:(id)sender
{
    CGPoint offset = CGPointMake(self.scrollView.contentOffset.x , 0);
    [self.scrollView setContentOffset:offset animated:YES];
}
- (IBAction)bottom:(id)sender
{
    CGFloat offsetY = self.scrollView.contentSize.height - self.scrollView.frame.size.height;
    self.scrollView.contentOffset = CGPointMake(self.scrollView.contentOffset.x , offsetY);
}

- (IBAction)right:(id)sender
{
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.3];
    
    CGFloat offsetX = self.scrollView.contentSize.width - self.scrollView.frame.size.width;
    self.scrollView.contentOffset = CGPointMake(offsetX , self.scrollView.contentOffset.y);
    [UIView commitAnimations];
}

这里贴上我的代码链接scrollView的Github链接.
这里的内容很多借鉴了小码哥视频中的,有什么问题可以直接问我,当然想学习的我这边也有些资源可以发给你,大家共同进步。

上一篇下一篇

猜你喜欢

热点阅读