UIScrollView手动轮播图

没有添加定时器,所以不能达到自动的效果

#import "JZScrollViewController.h"

@interface JZScrollViewController ()

@property (nonatomic, strong) UIScrollView * scrollView;
@property (nonatomic, strong) UIPageControl * pageControl;

@end

@implementation JZScrollViewController

- (void)viewDidLoad {
 

   [super viewDidLoad];
   
    self.view.backgroundColor = [UIColor whiteColor];
   
    [self initScroll];
    [self addImageWithtag:1000];
    [self initpageControl];
}

//初始化Scroll
- (void)initScroll
{
    UIScrollView * scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)];
    scroll.showsHorizontalScrollIndicator = NO;
    scroll.showsVerticalScrollIndicator = NO;
    scroll.contentSize = CGSizeMake([UIScreen mainScreen].bounds.size.width * 3, 0);
    scroll.pagingEnabled = YES;
    scroll.delegate = self;
    self.scrollView = scroll;
    [self.view addSubview:self.scrollView];
}

//初始化pageControl
- (void)initpageControl
{
    UIPageControl * page = [[UIPageControl alloc] initWithFrame:CGRectMake(([UIScreen mainScreen].bounds.size.width - 200) / 2, 300 - 30, 200, 30)];
    page.numberOfPages = 3;
    page.currentPage = 0;
    page.currentPageIndicatorTintColor = [UIColor blackColor];
    page.pageIndicatorTintColor = [UIColor greenColor];
    page.userInteractionEnabled = NO;
   
    self.pageControl = page;
    [self.view addSubview:page];
}

//添加图片
- (void)addImageWithtag:(NSInteger) tag
{
    for(int i = 0; i < 3; i++){
        NSString * name = [NSString stringWithFormat:@"%d.jpg", i + 1];
        UIImage * image = [UIImage imageNamed:name];
        UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(i * [UIScreen mainScreen].bounds.size.width, 100, [UIScreen mainScreen].bounds.size.width, 200)];
        imageView.tag = tag + i;
        imageView.image = image;
       
        [self.scrollView addSubview:imageView];
    }
}

//滚动图片达到轮播图的效果
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat scrollX = self.scrollView.contentOffset.x + [UIScreen mainScreen].bounds.size.width / 2;
    int num = (int)(scrollX / [UIScreen mainScreen].bounds.size.width);
    NSLog(@"%d", num);
    self.pageControl.currentPage = num;
}

@end

转载于:https://www.cnblogs.com/sjzlovecj/p/4661630.html

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值