iOS启动页面和引导页面的实现

这几天有点事多,都没时间摸电脑,几天不学习都不知道写代码了,话不多说,直接上代码,难免逻辑有bug,还请各位大神不要见笑,还望不吝赐教

程序欢迎界面我做的很不美,临时下载了几张图


首先创建两个文件welcomeVC和firstVC分别是启动页面和引导页面都继承自UIViewController


首先是welcomeVC.h

#import<UIKit/UIKit.h>

#define WIDTH (NSInteger)self.view.bounds.size.width

#define HEIGHT (NSInteger)self.view.bounds.size.height

@interface firstVC : UIViewController

@end


然后是welcomeVC.m

#import "welcomeVC.h"

#import "firstVC.h"

@interface welcomeVC ()

@property(nonatomic,strong)UIView*lunchV;

@property(nonatomic,strong)UIImageView*imageV;

@end

@implementation welcomeVC

- (void)viewDidLoad {

[super viewDidLoad];

_lunchV = [[UIView alloc] init];

self.lunchV.frame = CGRectMake(0, 0, WIDTH, HEIGHT);

[self.view addSubview:_lunchV];

UIImageView*imageV = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)];

UIImage*image = [UIImage imageNamed:@"1.JPG"];

imageV.image = image;

[self.lunchV addSubview:imageV];

[self.view bringSubviewToFront:self.lunchV];

[NSTimer scheduledTimerWithTimeInterval:3 target:self selector:@selector(removelunch) userInfo:nil repeats:NO];

[NSTimer scheduledTimerWithTimeInterval:3.1 target:self selector:@selector(change) userInfo:nil repeats:NO];

}

-(void)removelunch

{

[self.lunchV removeFromSuperview];

}

- (void)change

{

self.view.window.rootViewController = [[firstVC alloc] init];

}

其中有些地方我自己不是很确定逻辑是否合理,还请不要见怪

firstVC.h

#import <UIKit/UIKit.h>

#define WIDTH (NSInteger)self.view.bounds.size.width

#define HEIGHT (NSInteger)self.view.bounds.size.height

@interface firstVC : UIViewController

@end



firstVC.m文件


#import "ViewController.h"

#import "firstVC.h"

@interface firstVC (){

// 创建页码控制器

UIPageControl *pageControl;

// 判断是否是第一次进入应用

BOOL flag;

}

@end

@implementation firstVC

- (void)viewDidLoad {

[super viewDidLoad];

UIScrollView *myScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT)];

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

{

UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"1-%d.jpg",i+1]];

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(WIDTH * i, 0, WIDTH, HEIGHT)];

// 在最后一页创建按钮

if (i == 2)

{

// 必须设置用户交互 否则按键无法操作

imageView.userInteractionEnabled = YES;

UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];

button.frame = CGRectMake(WIDTH / 3, HEIGHT * 7 / 8, WIDTH / 3, HEIGHT / 16);

[button setTitle:@"点击进入" forState:UIControlStateNormal];

[button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];

button.layer.borderWidth = 2;

button.layer.cornerRadius = 5;

button.clipsToBounds = YES;

button.layer.borderColor = [UIColor whiteColor].CGColor;

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

[imageView addSubview:button];

}

imageView.image = image;

[myScrollView addSubview:imageView];

}

myScrollView.bounces = NO;

myScrollView.pagingEnabled = YES;

myScrollView.showsHorizontalScrollIndicator = NO;

myScrollView.contentSize = CGSizeMake(WIDTH * 3, HEIGHT);

myScrollView.delegate = self;

[self.view addSubview:myScrollView];

pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(WIDTH / 3, HEIGHT * 15 / 16, WIDTH / 3, HEIGHT / 16)];

// 设置页数

pageControl.numberOfPages = 3;

// 设置页码的点的颜色

pageControl.pageIndicatorTintColor = [UIColor yellowColor];

// 设置当前页码的点颜色

pageControl.currentPageIndicatorTintColor = [UIColor redColor];

[self.view addSubview:pageControl];

}

#pragma mark - UIScrollViewDelegate

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{

// 计算当前在第几页

pageControl.currentPage = (NSInteger)(scrollView.contentOffset.x / [UIScreen mainScreen].bounds.size.width);

}

// 点击按钮保存数据并切换根视图控制器

- (void) go:(UIButton *)sender{

flag = YES;

NSUserDefaults *useDef = [NSUserDefaults standardUserDefaults];

// 保存用户数据

[useDef setBool:flag forKey:@"notFirst"];

[useDef synchronize];

// 切换根视图控制器

self.view.window.rootViewController = [[ViewController alloc] init];

}

AppDelegate.h文件不做变动


AppDelegate.m文件

#import "AppDelegate.h"

#import "welcomeVC.h"

#import "firstVC.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

[self.window makeKeyAndVisible];

self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];

self.window.backgroundColor = [UIColor whiteColor];

welcomeVC*root = [[welcomeVC alloc] init];

self.window.rootViewController = root;

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

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

NSLog(@"首次启动");

UIViewController *vc = [[UIViewController alloc] init];

self.window.rootViewController = vc;

}else {

NSLog(@"非首次启动");

welcomeVC *vc1 = [[welcomeVC alloc] init];

self.window.rootViewController = vc1;

}

return YES;

}

- (void)change

{

self.window.rootViewController = [[firstVC alloc] init];

}


ViewController.h和ViewController.m文件我没有写代码也就是主界面了



我自己搜了好多文档也浏览了不少博客,东拼西凑的总算达到了我要的效果,我知道其中有不合理的地方,还请各位大牛多多指点,或许是我自己学习方法不对吧,一个人看博客泡论坛,看视频,自学速度不是很快,但是还是有那么些许收获的,这就是对我的付出的最大回报,


看了很多大牛说,学习最快的办法就是输出,输出就是把书本的只是,把自己学到的知识,通过思考转化为自己的东西,最快的转化的方法就是拿出来和别人一起探讨,交流。所以在这里,对于这一篇东拼西凑才打到效果的文章,我就不写那些原著的大牛了,请各位朋友多多指教

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容