//
// ViewController.m
// LIBAOZHENG0826
//
// Created by 张艳锋 on 15/8/26.
// Copyright (c) 2015年 张艳锋. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
{
BOOL isOut;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
if (![[NSUserDefaults standardUserDefaults] boolForKey:@"firstLanch"]) {
NSLog(@"程序首次安装启动");
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"firstLanch"];
[self makeLaunchView];
}
else{
NSLog(@"程序不是首次安装启动");
}
}
-(void)makeLaunchView{
//张艳锋,引导页,【四张图片】
UIScrollView *myScrollview=[[UIScrollView alloc]initWithFrame:CGRectMake(0,0,568, 320)];//显示框大小
myScrollview.tag=121;
myScrollview.backgroundColor=[UIColor redColor];
myScrollview.contentSize=CGSizeMake(568*4, 320);//有效显示区域
myScrollview.delegate=self;//添加代理
//添加图片组
for (int i=0; i<4; i++) {
UIImageView *imageview1=[[UIImageView alloc]initWithFrame:CGRectMake(568*i, 0, 568, 320)];//设置图片显示大小
NSString *imageName=[NSString stringWithFormat:@"%d.jpg",i];
imageview1.image=[UIImage imageNamed:imageName];
[myScrollview addSubview:imageview1];
}
myScrollview.pagingEnabled=YES;//按页翻动
[self.view addSubview:myScrollview];
}
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
//这里是在滚动的时候判断 我滚动到哪张图片了,如果滚动到了最后一张图片,那么
//如果在往下面滑动的话就该进入到主界面了,我这里利用的是偏移量来判断的,当
//一共五张图片,所以当图片全部滑完后 又像后多滑了30 的时候就做下一个动作
if (scrollView.contentOffset.x>4*320+30) {
isOut=YES;//这是我声明的一个全局变量Bool 类型的,初始值为no,当达到我需求的条件时将值改为yes
}
}
//停止滑动
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
//判断isout为真 就要进入主界面了
if (isOut) {
//这里添加了一个动画,(可根据个人喜好)
[UIView animateWithDuration:1.5 animations:^{
scrollView.alpha=0;//让scrollview 渐变消失
}completion:^(BOOL finished) {
[scrollView removeFromSuperview];//将scrollView移除
// [self gotoMain];//进入主界面
} ];
}
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end