引导页的铺设

@property (nonatomic, retain) UIPageControl *page;


// 要先判断是否是第一次启动(一般都是看当前版本是否是第一次启动)

if (![[NSUserDefaults standardUserDefaults] boolForKey:@"everLaunched"]) {

        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"everLaunched"];

        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"firstLaunch"];

        

        

        /* scrollView处理 */

        UIScrollView *myScroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 375 * WIDTH, 667 * HEIGH)];

        myScroll.contentSize = CGSizeMake(375 * WIDTH * 3, 667 * HEIGH);

        for (int i = 0; i < 3; i++) {

            UIImageView *myImage = [[UIImageView alloc] initWithFrame:CGRectMake(375 * WIDTH * i, 0, 375 * WIDTH, 667 * HEIGH)];

            

            myImage.image = [UIImage imageNamed:[NSString stringWithFormat:@"引导图%d", i + 1]];

            [myScroll addSubview:myImage];

            

        }

        myScroll.pagingEnabled = YES;

        myScroll.showsHorizontalScrollIndicator = NO;

        myScroll.bounces = NO;

        [self.window addSubview:myScroll];

        

        

         /*  最后一个页面设置一个button */

        UIButton *button = [UIButton buttonWithType:(UIButtonTypeCustom)];

        [myScroll addSubview:button];

//        button.backgroundColor = [UIColor orangeColor];

        button.frame = CGRectMake(self.window.frame.size.width * 2 + self.window.frame.size.width / 2 - 100 * WIDTH, self.window.frame.size.height - 215 * HEIGH, 200, 100);

        button.tintColor = [UIColor blackColor];

        button.titleLabel.font = [UIFont systemFontOfSize:20];

        [button addTarget:self action:@selector(click) forControlEvents:(UIControlEventTouchUpInside)];

        [button setTitle:@"" forState:UIControlStateNormal];

        

        /*  签订协议 */

        myScroll.delegate = self;

        

        /* 页面处理 */

        self.page = [[UIPageControl alloc] initWithFrame:CGRectMake(0, 620 * HEIGH, 375*WIDTH, 30)];

        self.page.numberOfPages = 3;

        self.page.currentPage = 0;

        self.page.backgroundColor = [UIColor clearColor];

        self.page.currentPageIndicatorTintColor = [UIColor cyanColor];

        self.page.pageIndicatorTintColor = [UIColor whiteColor];

        [self.window addSubview:self.page];

        

    } else {

        

        [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"firstLaunch"];


        self.window.rootViewController = self.sideMenuVC;

}


/* button的点击方法,处理跳转 */

- (void)click

{

    self.window.rootViewController = self.sideMenuVC;

    

}


/* 页面移动处理 */

- (void)scrollViewDidScroll:(UIScrollView *)scrollView


{

    self.page.currentPage = scrollView.contentOffset.x / scrollView.window.frame.size.width;

}





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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值