(iOS)新特性页面实现思路

一般我们更新APP版本好的时候都会对用户推送一个有好的新特性页面,往往以轮播页面的形式来展示这次的更新或者APP的一些主要特性。

一般思路可以分为以下几个要点:

  • 1.在AppDelegate获取最新版本号
  • 2.用最新版本号与上一次(存在)版本号对比
    • 相等 : 进入主界面
    • 不等 : 进入新特性页面
  • 3.显示完新特性页面后进入主程序页面
  • 4.存储APP版本号

1.分析CFBundleShortVersionStringCFBundleVersion的不同

在开发中一般我们会把这两个来标识应用版本号的变量定义宏,从宏定义来看一个是CFBundleVersion获取当前版本号,CFBundleShortVersionString是获取当前biuld号。具体不同如下:

//获取当前版本号
#define BUNDLE_VERSION [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]`
//获取当前版本的biuld
#define BIULD_VERSION [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]
Key Xcode name Summary
CFBundleShortVersionString Bundle versions string, short The release-version-number string for the bundle
CFBundleVersion Bundle version The build-version-number string for the bundle

不同点 : CFBundleShortVersionString和表示应用构建迭代(包括发布与未发布)的 CFBundleVersion 的值不同,并且这个值可以被包含在InfoPlist.strings文件中进行本地化。一般Build供内部使用来确定唯一版本。

相同点从命名规则上来看 :两个都是只能包含数字 (0~9).分割,整数开头0会被忽略。

  • 具体可以去苹果官方文档中进行查阅,由于两者还有所差别我建议使用CFBundleVersion作为程序的版本号标识。

2.实现新特性页面的判断

1.新建一个工具类 DCAppVersionTool用来版本号的存取

  • DCAppVersionTool.h
/**
 *  获取之前保存的版本
 *
 *  @return NSString类型的AppVersion
 */
+ (NSString *)dc_GetLastOneAppVersion;
/**
 *  保存新版本
 */
+ (void)dc_SaveNewAppVersion:(NSString *)version;
  • DCAppVersionTool.m
// 获取保存的上一个版本信息
+ (NSString *)dc_GetLastOneAppVersion {
    
    return [[NSUserDefaults standardUserDefaults] stringForKey:@"AppVersion"];
}

// 保存新版本信息(偏好设置)
+ (void)dc_SaveNewAppVersion:(NSString *)version {
    
    [[NSUserDefaults standardUserDefaults] setObject:version forKey:@"AppVersion"];
    [[NSUserDefaults standardUserDefaults] synchronize];
}

2.在AppDelegatedidFinishLaunchingWithOptions方法中抽取一个方法[self setUpRootVC];进行如下判断

#pragma mark - 根控制器
- (void)setUpRootVC
{
    if ([BUNDLE_VERSION isEqualToString:[DCAppVersionTool dc_GetLastOneAppVersion]]) {//判断是否当前版本号等于上一次储存版本号
    
          // 进入主程序页面
          
    }else{
        
        [DCAppVersionTool dc_SaveNewAppVersion:BUNDLE_VERSION]; //储存当前版本号

        // 进入新特性页面
}

3.实现新特性页面的封装

在实现轮播页面上我打算用UICollectionView来实现,让Cell内部展示素材图片,Cell的尺寸等于屏幕的尺寸。当主要功能实现后我们应该再考虑结合具体素材的情况下是否添加跳过,UIPageControl和滑动最后一页再往后滑动自动跳转到主页面等功能。其次把以上功能进行一层简易的封装。

封装思路: 首先我在新特性页面DCNewFeatureViewController.h文件中外铺一个block方法


/**
 新特性属性设置
 *imageArray   图片数组
 *showSkip  是否展示跳过
 *selColor    选择小圆点的颜色
 *showPageCount 是否展示小圆点
 
 @param BaseSettingBlock 基础设置
 */
- (void)setUpFeatureAttribute:(void(^)(NSArray **imageArray,UIColor **selColor,BOOL *showSkip,BOOL *showPageCount))BaseSettingBlock;

封装思路: 从方法中能看出,此方法提供了一个图片数组的接口,两个是否,是否展示小圆点,以及是否展示右上角跳过按钮,和一个小圆点选中自定义颜色的接口,用来供调用选择。

核心代码

  • 懒加载初始化UICollectionView、跳过按钮和小圆点UIPageControl
- (UICollectionView *)collectionView
{
    if (!_collectionView) {
        UICollectionViewFlowLayout *dcFlowLayout = [UICollectionViewFlowLayout new];
        dcFlowLayout.minimumLineSpacing = dcFlowLayout.minimumInteritemSpacing = 0;
        dcFlowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
        _collectionView = [[UICollectionView alloc] initWithFrame:CGRectZero collectionViewLayout:dcFlowLayout];
        _collectionView.delegate = self;
        _collectionView.dataSource = self;
        _collectionView.frame = [UIScreen mainScreen].bounds;
        _collectionView.pagingEnabled = YES;
        _collectionView.bounces = NO;
        _collectionView.showsHorizontalScrollIndicator = NO;
        
        [self.view insertSubview:_collectionView atIndex:0];
        
        [_collectionView registerClass:[DCNewFeatureCell class] forCellWithReuseIdentifier:DCNewFeatureCellID];
    }
    return _collectionView;
}

- (UIButton *)skipButton
{
    if (!_skipButton) {
        
        _skipButton = [UIButton buttonWithType:UIButtonTypeCustom];
        _skipButton.frame = CGRectMake(ScreenW - 85, 30, 65, 30);
        [_skipButton addTarget:self action:@selector(skipButtonClick) forControlEvents:UIControlEventTouchUpInside];
        _skipButton.hidden = YES;
        _skipButton.backgroundColor = [[UIColor lightGrayColor]colorWithAlphaComponent:0.8];
        _skipButton.titleLabel.font = [UIFont systemFontOfSize:14];
        _skipButton.layer.cornerRadius = 15;
        _skipButton.layer.masksToBounds = YES;
        
        [self.view addSubview:_skipButton];
    }
    return _skipButton;
}

- (UIPageControl *)pageControl
{
    if (!_pageControl && _imageArray.count != 0) {
        
        _pageControl = [[UIPageControl alloc] init];
        _pageControl.numberOfPages = _imageArray.count;
        _pageControl.userInteractionEnabled = false;
        [_pageControl setPageIndicatorTintColor:[UIColor lightGrayColor]];
        UIColor *currColor = (_selColor == nil) ? [UIColor darkGrayColor] : _selColor;
        [self.pageControl setCurrentPageIndicatorTintColor:currColor];
        _pageControl.frame = CGRectMake(0, ScreenH * 0.95, ScreenW, 35);
        [self.view addSubview:_pageControl];
    }
    return _pageControl;
}
  • 根据Block回调中的两个是否在Set方法中进行显示影藏判断
#pragma mark - 是否展示跳过按钮
- (void)setShowSkip:(BOOL)showSkip
{
    _showSkip = showSkip;
    self.skipButton.hidden = !self.showSkip;
}

#pragma mark - 是否展示page小圆点
- (void)setShowPageCount:(BOOL)showPageCount
{
    _showPageCount = showPageCount;
    self.pageControl.hidden = !self.showPageCount;
}
  • 设置数据源和代理,并且在Cell中进行对是否有跳过素材按钮的判断
#pragma mark - <UICollectionViewDataSource>
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return _imageArray.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    DCNewFeatureCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:DCNewFeatureCellID forIndexPath:indexPath];
    
    cell.nfImageView.image = (DCIsiPhoneX) ? [UIImage imageNamed:[NSString stringWithFormat:@"%@_x",_imageArray[indexPath.row]]]  : [UIImage imageNamed:_imageArray[indexPath.row]];
    
    cell.hideBtnImg = @"hidden";
    [cell dc_GetCurrentPageIndex:indexPath.row lastPageIndex:_imageArray.count - 1];
    
    WEAKSELF
    cell.hideButtonClickBlock = ^{
        
        [weakSelf restoreRootViewController:[[DCTabBarController alloc] init]];
    };
    
    return cell;
}

#pragma mark - <UICollectionViewDelegateFlowLayout>
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    return CGSizeMake(ScreenW, ScreenH);
}
  • UICollectionViewCell.h
/* 跳过图片素材 */
@property (strong , nonatomic)NSString *hideBtnImg;

/**
 用来获取页码
 
 @param currentIndex 当前index
 @param lastIndex 最后index
 */
- (void)dc_GetCurrentPageIndex:(NSInteger)currentIndex lastPageIndex:(NSInteger)lastIndex;
  • UICollectionViewCell.m

- (void)setHideBtnImg:(NSString *)hideBtnImg
{
    _hideBtnImg = hideBtnImg;
    if (hideBtnImg.length != 0) {
        [self.hideButton sizeToFit]; //自适应
        
        [self.hideButton setImage:[UIImage imageNamed:hideBtnImg] forState:UIControlStateNormal];
        self.hideButton.center = CGPointMake(ScreenW * 0.5, ScreenH * 0.9);
    }
}

#pragma mark - 获取页码index
- (void)dc_GetCurrentPageIndex:(NSInteger)currentIndex lastPageIndex:(NSInteger)lastIndex
{
    _hideButton.hidden = (currentIndex == lastIndex) ?  NO : YES; //只有当前index和最后index相等时隐藏按钮才显示
}

最后还有一个当用户滑到最后一张图片的时候,仍然想继续往后滑动来进入主页面,这个时候我们要通过UIScrollView的代理方法。这里有一个注意点,由于上方我们初始化UICollectionView的时候设置了bounces属性为NO,所以,我们还需在实现跳转之前做一层判断。如下:

#pragma mark - 通过代理来让她滑到最后一页再左滑动就切换控制器
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    
    if (_imageArray.count < 2) return; //一张图或者没有直接返回
    _collectionView.bounces = (scrollView.contentOffset.x > (_imageArray.count - 2) * ScreenW) ? YES : NO;
    if (scrollView.contentOffset.x >  (_imageArray.count - 1) * ScreenW) {
        [self restoreRootViewController:[[DCTabBarController alloc] init]];
    }
}

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

推荐阅读更多精彩内容

  • RTTI是”Runtime Type Information”的缩写,意思是运行时类型信息,它提供了运行时确定对象...
    DayDayUpppppp阅读 20,260评论 0 23
  • 什么更重要?意识到了重要,真正去做到更重要。 复盘李老师跟刚毕业学生的三个建议。一是要学会为自己打工,...
    简素七年阅读 269评论 0 1
  • 有時候我懶洋洋地步出房間,見到大廳裡的這一幕: 這個光!這個光!這個光! 配上這牆面和布簾的色彩,配上那Ayahu...
    Lahinna阅读 417评论 0 0
  • (一)查理.芒格的智慧箴言 众所周知,查理.芒格是股神巴菲特的一生好搭档,作为一位有大智慧的投资家,他自有一套智慧...
    茜喵阅读 888评论 6 15