博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
scrollview 例子2
阅读量:6207 次
发布时间:2019-06-21

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

代码:

#import "RootViewController.h"@implementation RootViewController@synthesize scrollView;- (void)viewDidLoad{    [super viewDidLoad];    // Do any additional setup after loading the view.        int pageCount = 3;    scrollView = [[UIScrollView alloc]initWithFrame:[[UIScreen mainScreen] applicationFrame]];    [self.view addSubview:scrollView];        scrollView.backgroundColor = [UIColor redColor];    scrollView.scrollEnabled = NO;    scrollView.contentSize = CGSizeMake(scrollView.frame.size.width * pageCount, scrollView.frame.size.height);    scrollView.pagingEnabled = YES;    scrollView.showsHorizontalScrollIndicator = YES;    scrollView.delegate = self;        CGRect rect = [[UIScreen mainScreen]bounds];    NSArray *colors = [NSArray arrayWithObjects:[UIColor yellowColor], [UIColor blueColor], [UIColor purpleColor], nil];        for (int i = 0; i < pageCount; i++) {                CGRect aRect = CGRectMake(rect.origin.x + (i * rect.size.width), rect.origin.y,                                  rect.size.width, rect.size.height);        UIView *view1 = [[UIView alloc]initWithFrame:aRect];        view1.backgroundColor = colors[i];        [scrollView addSubview:view1];    }        [self moveToPage:3];}- (void) moveToPage:(int)index{    index--;    CGRect rect = [[UIScreen mainScreen]bounds];    CGPoint point = CGPointMake(rect.size.width * index, 0);    [scrollView setContentOffset:point];}- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{    // 拖拽完毕以后调用    int index = [self getPageIndex:scrollView];    NSLog(@"index = %d",index);}-(int) getPageIndex:(UIScrollView *)scrollView{    return fabs(scrollView.contentOffset.x) /  scrollView.frame.size.width;}@end

 

转载于:https://www.cnblogs.com/code-style/p/3984605.html

你可能感兴趣的文章
数据类型之Integer与int
查看>>
imageDownloader
查看>>
linux笔记_20150825_linux下的软件工具唠叨下
查看>>
架构探险笔记10-框架优化之文件上传
查看>>
JAVA单向链表实现
查看>>
02:Kubernetes集群部署——平台环境规划
查看>>
会计的思考(37):“弱水三千,只取一瓢饮”--业务人员的财务意识
查看>>
随机存取存储器(RAM)
查看>>
activiti 5.22的demo运行
查看>>
构建微服务:Spring boot 入门篇
查看>>
转:PHP应用性能优化指南
查看>>
Codeforces 835 F Roads in the Kingdom(树形dp)
查看>>
作业1---四则运算
查看>>
MVC3.0+DWZ探索
查看>>
小程序入口传参:关于带参数的小程序扫码进入的方法
查看>>
转载:ASP.NET在后台代码实现个功能,根据选择提示用户是否继续执行操作
查看>>
[Angularjs]锚点操作服务$anchorScroll
查看>>
静态代理设计与动态代理设计
查看>>
uva-10152-乌龟排序
查看>>
sqlmap手册
查看>>