IOS-ScrollView创造Android-ViewPager效果

1.将图片放进images文件夹,并改名为images.bundle.拖进项目中



2拖动scrollView 并在左上角按住Scroll View 拖到View Controller中 选择deleagte.

这时候.指定Scroll View的代理为controller. 



为指定的controller加上代理

#import <UIKit/UIKit.h>

@interface CSZViewController : UIViewController <UIScrollViewDelegate>

//ViewPager
@property (weak, nonatomic) IBOutlet UIScrollView *scrollView;

@end

@implementation CSZViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    int width=self.view.frame.size.width;
    int height=self.view.frame.size.height;
    
    //从bundle压缩文件中取出多页的内容路径
    NSString *bundlePath=[[NSBundle mainBundle] pathForResource:@"images" ofType:@"bundle"];
    NSBundle *bundle=[[NSBundle alloc] initWithPath:bundlePath];
    self.imagesArr=[bundle pathsForResourcesOfType:@"jpg" inDirectory:nil];
	self.scrollView.contentSize=CGSizeMake(self.imagesArr.count*width,height);
    
    //创建分页
    for (int i=0; i<self.imagesArr.count; i++) {
        UIImageView *itemImage=[[UIImageView alloc] init];
        itemImage.image=[UIImage imageWithContentsOfFile:self.imagesArr[i]];
        itemImage.frame=CGRectMake(i*width, 0, width, height);
        [self.scrollView addSubview:itemImage];
    }
    
    //消除滑动时出现的滑块
    self.scrollView.showsHorizontalScrollIndicator=NO;
    //使ViewPager富有弹性.分割每页
    self.scrollView.pagingEnabled=YES;
    //创建标识
    UIPageControl *ctr=[[UIPageControl alloc] init];
    ctr.bounds=CGRectMake(0, 0, 150, 50);
    ctr.center=CGPointMake(width*0.5, height-50);

    ctr.currentPageIndicatorTintColor=[UIColor redColor];
    ctr.pageIndicatorTintColor=[UIColor grayColor];
    ctr.currentPage=1;
    //声明指示器的个数。如果不设置将不显示
    ctr.numberOfPages=self.imagesArr.count;
    [ctr addTarget:self action:@selector(pageIndict:) forControlEvents:UIControlEventValueChanged];
    [self.view addSubview:ctr];
    //因为self.view已经绑定了一次,所以pageControl为弱引用
    self.pageControl=ctr;
}

#pragma mark 点击指示器 跳转ViewPager
- (IBAction)pageIndict:(id)sender
{
    int curr=self.pageControl.currentPage;
    NSLog(@"%d",curr);
    self.scrollView.contentOffset=CGPointMake(self.view.frame.size.width*curr, 0)
    ;
}

#pragma mark 当滑动ViewPager时停下来 让对应的指示器进行改变
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    int offSetX=self.scrollView.contentOffset.x;
    int index=offSetX/self.view.frame.size.width;
    self.pageControl.currentPage=index;
    
}

@end


IOS-ScrollView创造Android-ViewPager效果,,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。