iOS开发_一键集成引导页

一键集成APP引导页,包括图片启动图以及利用视频做引导页(利用视频做引导页采取 布袋的世界 的建议),并都拥有不同状态下的引导页样式,省掉冗余的代码,集成性高,使用方便。
图片启动图

视频启动图

1. SHStartPageView内部代码

SHStartPageView.h
//
//  SHStartPageView.h
//  SHStartPageView
//
//  Created by CoderSun on 2017/3/28.
//  Copyright © 2017年 Mobby. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface SHStartPageView : UIView

/**
 根据图片数组创建SHStartPageView

 @param imageArray 引导页图片数组
 @param isHidden 点击进入按钮是否隐藏
 @return SHStartPageView
 */
- (instancetype)initWithImageArray:(NSArray *)imageArray
               enterButtonIsHidden:(BOOL)isHidden;




/**
 根据视频名称以及视频类型创建SHStartPageView

 @param videoName 视频名称
 @param videoType 视频格式
 @param isHidden 点击进入按钮是否隐藏
 @return SHStartPageView
 */
- (instancetype)initWithVideoName:(NSString *)videoName
                        videoType:(NSString *)videoType
              enterButtonIsHidden:(BOOL)isHidden;


/**
 根据视频url创建SHStartPageView

 @param videoURL 视频url
 @param isHidden 点击进入按钮是否隐藏
 @return SHStartPageView
 */
- (instancetype)initWithVideoURL:(NSURL *)videoURL
             enterButtonIsHidden:(BOOL)isHidden;

@end
SHStartPageView.m
//
//  SHStartPageView.m
//  SHStartPageView
//
//  Created by CoderSun on 2017/3/28.
//  Copyright © 2017年 Mobby. All rights reserved.
//

#define MainScreen_width  [UIScreen mainScreen].bounds.size.width
#define MainScreen_height [UIScreen mainScreen].bounds.size.height

#import "SHStartPageView.h"
#import <AVFoundation/AVFoundation.h>

@interface SHStartPageView ()<UIScrollViewDelegate>

// image - SHStartPageView
@property (nonatomic, strong) NSArray *imageArray;
@property (nonatomic, strong) UIScrollView *bigScrollView;
@property (nonatomic, strong) UIPageControl *pageControl;


// video - SHStartPageView
@property (nonatomic, strong) UIView *videoView;
@property (nonatomic, strong) AVPlayer *player;
@property (nonatomic, strong) AVPlayerItem *playerItem;
@property (nonatomic, strong) NSURL *videoURL;


@end

@implementation SHStartPageView


- (instancetype)initWithImageArray:(NSArray *)imageArray
               enterButtonIsHidden:(BOOL)isHidden{
    
    if (self = [super initWithFrame:CGRectMake(0, 0, MainScreen_width, MainScreen_height)]) {
        
        _imageArray = imageArray;
        
        [self drawImageSHStartPageView:isHidden];
    }
    
    return self;
}


- (instancetype)initWithVideoName:(NSString *)videoName videoType:(NSString *)videoType enterButtonIsHidden:(BOOL)isHidden{
    
    
    NSString *pathString = [[NSBundle mainBundle] pathForResource:videoName ofType:videoType];
    NSURL *videoURL = [NSURL fileURLWithPath:pathString];

    return [self initWithVideoURL:videoURL enterButtonIsHidden:isHidden];
}



- (instancetype)initWithVideoURL:(NSURL *)videoURL enterButtonIsHidden:(BOOL)isHidden{
    
    if (self = [super initWithFrame:CGRectMake(0, 0, MainScreen_width, MainScreen_height)]) {
        
        self.videoURL = videoURL;
        [self drawVideoSHStartPageViewWithURL:self.videoURL isHidden:isHidden];
        
    }
    
    return self;
}


// 绘制视频启动图
- (void)drawVideoSHStartPageViewWithURL:(NSURL *)url isHidden:(BOOL)isHidden{
    
    self.videoView = [[UIView alloc] initWithFrame:self.frame];
    [self addSubview:self.videoView];
    
    AVPlayerItem *playerItem = [AVPlayerItem playerItemWithURL:url];
    self.playerItem = playerItem;
    self.player = [AVPlayer playerWithPlayerItem:playerItem];
    
    AVPlayerLayer *layer = [AVPlayerLayer playerLayerWithPlayer:self.player];
    layer.videoGravity = AVLayerVideoGravityResizeAspectFill;
    /*      
     videoGravity:

        AVLayerVideoGravityResizeAspect:按原视频比例显示,是竖屏的就显示出竖屏的,两边留黑
        AVLayerVideoGravityResizeAspectFill:以原比例拉伸视频,直到两边屏幕都占满,但视频内容有部分就被切割了
        AVLayerVideoGravityResize:拉伸视频内容达到边框占满,但不按原比例拉伸,这里明显可以看出宽度被拉伸了
     
     */

    layer.frame = CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height);
    [self.videoView.layer addSublayer:layer];
    [self.player play];
    
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlayDidEnd:) name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];
    
    if (isHidden == NO) {
        
        UIButton *enterButton = [UIButton buttonWithType:UIButtonTypeCustom];
        enterButton.frame = CGRectMake(self.videoView.frame.size.width / 2 - 50, MainScreen_height - 150, 100, 50);
        [enterButton setTitle:@"点击进入" forState:UIControlStateNormal];
        enterButton.layer.borderColor = [UIColor whiteColor].CGColor;
        enterButton.layer.borderWidth = 1;
        [enterButton addTarget:self action:@selector(skipAction:) forControlEvents:UIControlEventTouchUpInside];
        [self.videoView addSubview:enterButton];
        [self.videoView bringSubviewToFront:enterButton];
    }
}


// 绘制图片启动图
- (void)drawImageSHStartPageView:(BOOL)isHidden{
    
    // scrollView
    UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, MainScreen_width, MainScreen_height)];
    scrollView.contentSize = CGSizeMake((_imageArray.count + 1) * MainScreen_width, MainScreen_height);
    scrollView.pagingEnabled = YES;
    scrollView.bounces = NO;
    scrollView.showsHorizontalScrollIndicator = NO;
    scrollView.delegate = self;
    [self addSubview:scrollView];
    
    _bigScrollView = scrollView;
    
    // 添加引导图
    for (int i = 0; i < _imageArray.count; i ++) {
        
        UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(i * MainScreen_width, 0, MainScreen_width, MainScreen_height)];
        imageView.image = [UIImage imageNamed:_imageArray[i]];
        imageView.userInteractionEnabled = YES;
        [scrollView addSubview:imageView];
        
        if (i == _imageArray.count - 1 && isHidden == NO) {
            
            // 点击进入按钮
            UIButton *enterButton = [UIButton buttonWithType:UIButtonTypeCustom];
            enterButton.frame = CGRectMake(imageView.frame.size.width/2 - 50, MainScreen_height - 150, 100, 50);
            [enterButton setTitle:@"点击进入" forState:UIControlStateNormal];
            enterButton.layer.borderColor = [UIColor whiteColor].CGColor;
            enterButton.layer.borderWidth = 1;
            [enterButton addTarget:self action:@selector(skipAction:) forControlEvents:UIControlEventTouchUpInside];
            [imageView addSubview:enterButton];
        }else{
            
            // 跳过按钮
            UIButton *skipButton = [UIButton buttonWithType:UIButtonTypeCustom];
            skipButton.frame = CGRectMake(imageView.frame.size.width - 70, 20, 60, 30);
            [skipButton setTitle:@"跳过" forState:UIControlStateNormal];
            skipButton.titleLabel.font = [UIFont systemFontOfSize:20];
            [skipButton setTintColor:[UIColor lightGrayColor]];
            [skipButton setBackgroundColor:[UIColor grayColor]];
            [skipButton.layer setCornerRadius:5.0];
            [skipButton addTarget:self action:@selector(skipAction:) forControlEvents:UIControlEventTouchUpInside];
            [imageView addSubview:skipButton];
        }
    }
    
    // 页面控制器
    UIPageControl *pageControl = [[UIPageControl alloc] initWithFrame:CGRectMake(MainScreen_width / 2, MainScreen_height - 60, 0, 40)];
    pageControl.numberOfPages = _imageArray.count;
    pageControl.backgroundColor = [UIColor clearColor];
    [self addSubview:pageControl];
    _pageControl = pageControl;
    
}



- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{
    
    if (scrollView == _bigScrollView) {
        
        CGPoint offset = scrollView.contentOffset;
        _pageControl.currentPage = offset.x / MainScreen_width;
    }
    
    if (scrollView.contentOffset.x == (_imageArray.count) * MainScreen_width) {
        
        [self removeFromSuperview];
    }
}


- (void)skipAction:(UIButton *)sender{
    
    if (self.player) {
        
        [self removePlayer];
    }
    [self removeFromSuperview];
}

- (void)removePlayer{
    
    [self.player pause];
    self.player = nil;
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

#pragma mark - Notification
- (void)moviePlayDidEnd:(NSNotification *)notification{
    
    NSLog(@"播放完毕");
    
    if (self.player) {
        
        [self removePlayer];
    }
    [self removeFromSuperview];
}



@end

2. SHStartPageView使用

简单使用:

// 根据图片数组创建启动图
NSArray *imageArray = @[@"1.jpg",@"2.jpg",@"3.jpg",@"4.jpg"];
SHStartPageView *shStartPageView = [[SHStartPageView alloc] initWithImageArray:imageArray enterButtonIsHidden:NO];
[self.window.rootViewController.view addSubview: shStartPageView];


// 根据视频名称和类型创建启动图
SHStartPageView *shStartPageView = [[SHStartPageView alloc] initWithVideoName:@"1" videoType:@"mp4" enterButtonIsHidden:NO];
[self.window.rootViewController.view addSubview:shStartPageView];

常用用法:

// 判断第一次进入
if (![[NSUserDefaults standardUserDefaults] boolForKey:@"firstLaunch"]) {

    NSLog(@"第一次进入");
    [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"firstLaunch"];


    // 根据图片数组创建启动图
    NSArray *imageArray = @[@"1.jpg",@"2.jpg",@"3.jpg",@"4.jpg"];
    SHStartPageView *shStartPageView = [[SHStartPageView alloc] initWithFrame:self.window.frame ImageArray:imageArray enterButtonIsHidden:NO];


    // 根据视频名称和类型创建启动图
    SHStartPageView *shStartPageView = [[SHStartPageView alloc] initWithVideoName:@"1" videoType:@"mp4" enterButtonIsHidden:NO];
    
    [self.window.rootViewController.view addSubview:shStartPageView];
    
}
代码已上传至git:
--> 传送门:SHStartPageViewDemo

3.文章参考

iOS视频播放AVPlayer的视频内容拉伸设置

有问题欢迎指正以及相互探讨 —— CoderSun

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

推荐阅读更多精彩内容