iOS 如何优雅的实现新功能引导页并易于维护

先看一下效果




Demo:  代码方式(万能使用)+贝塞尔方式(把页面某个字圈起来,支持圆形方形)

1.需求背景

在app版本迭代过程中,有些功能模块的入口可能改版较大,位置发生了变动,为了用户的体验,常常需要上面样式的新功能引导页

注意:新功能引导页可不是新特性啊.....

一.思路1,UI适配不同屏幕分辨率的机型。ios还好,安卓可就要骂街了啊~那么多机型。况且如果你的版本迭代比较频繁,tabBar个数和页面是动态化配置,那UI需要大量分别率的切图,对其是很大的工作量。而且以后只能靠该方式UI维护

二.思路2,前端代码生成。那么生成方式怎么处理,如何精准的get到控件的坐标尺寸呢?如果你的页面嵌套比较多呢?

为了解决上述问题我们需要如下处理

1.单利,目的是只出现一次并不再需要频繁创建,调用方便,而且最重要的是可以随时增加属性 在你页面任何层级位置记录你某个控件的bounds frame。如果你需要的话

2.怎么拿到你控件尺寸。即便拿到了也是对于父控件的尺寸,所以我们只需要记录或者知道控件的横坐标初始位置即可

3.怎么处理tabBar的item的frame  https://www.jianshu.com/p/004f068678ea  tabBar  Frame 参照这里喔!

三:使用方法

具体实现请将下方代码拷贝到你继承于 NSObject的类中即可。

//

//  SGGuideManager.h

//  sonkwoapp

//

//  Created by zdby on 2022/9/30.

//

#import

typedef void(^FinishBlock)(void);

typedefNS_ENUM(NSInteger,SGGuidePageType) {

    SGGuidePageTop1 =0,

    SGGuidePageTop2,

    SGGuidePageTop3,

    SGGuidePageTabBar

};

@interface SGGuideManager : NSObject

// 获取单例

+ (instancetype)shareManager;

/**

 显示方法

 @param type 指引页类型

 */

- (void)showGuidePageWithType:(SGGuidePageType)type;

/**

 显示方法

 @param type 指引页类型

 @param completion 完成时回调

 */

- (void)showGuidePageWithType:(SGGuidePageType)typecompletion:(FinishBlock)completion;

@end


//

//  SGGuideManager.m

//  sonkwoapp

//

//  Created by zdby on 2022/9/30.

//

#import "SGGuideManager.h"

@interface SGGuideManager ()

@property (nonatomic, copy)  FinishBlockfinish;

@property (nonatomic, strong) NSString *guidePageKey;

@property (nonatomic, assign) SGGuidePageType guidePageType;

@property (nonatomic, strong) UIView *bgView;

@end

@implementation SGGuideManager

+ (instancetype)shareManager {

    staticSGGuideManager *instance =nil;

    staticdispatch_once_t onceToken;

    dispatch_once(&onceToken, ^{

        instance = [[selfalloc] init];

    });

    returninstance;

}

#pragma mark--引导页的下一页

- (void)showGuidePageWithType:(SGGuidePageType)typecompletion:(FinishBlock)completion {

    [selfcreatControlWithType:type completion:completion];

}

#pragma mark-- 引导页最后一步

- (void)showGuidePageWithType:(SGGuidePageType)type {

    [selfcreatControlWithType:type completion:NULL];

}

- (void)creatControlWithType:(SGGuidePageType)typecompletion:(FinishBlock)completion {

    _finish = completion;

    // 遮盖视图

    CGRect frame = [UIScreen mainScreen].bounds;

    UIView *bgView = [[UIView alloc] initWithFrame:frame];

    bgView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.6f];

    [bgView addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:selfaction:@selector(tap:)]];

    [KeyWindow addSubview:bgView];

    _bgView = bgView;

  //有几个引导页就配置几个

    switch(type) {

        caseSGGuidePageTop1:

        [selfconfigSGGuidePageTop1];

        _guidePageKey = SGGuidePageTop1Key ;

        break;


        caseSGGuidePageTop2:

        [selfconfigSGGuidePageTop2];

        _guidePageKey = SGGuidePageTop2Key;

        break;


        caseSGGuidePageTop3:

        [selfconfigSGGuidePageTop3];

        _guidePageKey = SGGuidePageTop3Key;

        break;


        caseSGGuidePageTabBar:

        [selfconfigSGGuidePageTabBar];

        _guidePageKey = SGGuidePageTabBarKey;

        break;


        default:

        break;

    }

}

#pragma mark--configGuide

-(void)configSGGuidePageTop1 {

 //用户可以不浏览直接跳过(新功能引导有其存在的必要性,不建议优化这里直接跳过,如果你们需求如此那就加上吧)

  UIButton *jumpBtn = [[UIButton alloc]initWithFrame:CGRectMake(SGScreen_Width-20-40,84,40,24)];

  [jumpBtn setTitle:@"跳过"forState:UIControlStateNormal];

  [jumpBtn setTitleColor:UIColor.whiteColor forState:UIControlStateNormal];

  jumpBtn.titleLabel.font = [UIFont SGFontWithStyle:FontWeightStyleRegular size:13];

  [jumpBtn addTarget:selfaction:@selector(jumpGuide) forControlEvents:UIControlEventTouchUpInside];

  [_bgView addSubview:jumpBtn];

  //如果你的页面是嵌套页面如:头条样式支持左右滑动切换页面的,则无法或很难拿到控件,即便拿到也是获取其对于父控件的尺寸,这里我们只关注一点

    //1.控件在不同机型的横坐标初始位置


  UIImageView *topImageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(9,87,133,90)];

  topImageView1.image = [UIImage imageNamed:@"guide1-1"];

  topImageView1.contentMode = UIViewContentModeScaleAspectFill;

  topImageView1.clipsToBounds =YES;

  [_bgView addSubview:topImageView1];


  UIImageView *topImageView2 = [[UIImageView alloc]initWithFrame:CGRectMake(43, topImageView1.bottom+5,240,210)];

  topImageView2.image = [UIImage imageNamed:@"guide1-2"];

  topImageView2.contentMode = UIViewContentModeScaleAspectFill;

  topImageView2.clipsToBounds =YES;

  [_bgView addSubview:topImageView2];


}

-(void)configSGGuidePageTop2 {

  CGFloat with1= [SGHelper getWidthWithText:@"推荐"height:20font:[UIFont fontWithName:@"Helvetica-Bold"size:17]];

  CGFloat with2= [SGHelper getWidthWithText:@"活动"height:20font:[UIFont fontWithName:@"Helvetica-Bold"size:15]];

  CGFloat with3= [SGHelper getWidthWithText:@"榜单"height:20font:[UIFont fontWithName:@"Helvetica-Bold"size:15]];

  UIImageView *topImageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(25+with1+35+with2+35+with3+23-133,87,133,120)];

  topImageView1.image = [UIImage imageNamed:@"guide2-1"];

  topImageView1.contentMode = UIViewContentModeScaleAspectFill;

  topImageView1.clipsToBounds =YES;

  [_bgView addSubview:topImageView1];


  UIImageView *topImageView2 = [[UIImageView alloc]initWithFrame:CGRectMake(36, topImageView1.bottom+5,240,210)];

  topImageView2.image = [UIImage imageNamed:@"guide2-2"];

  topImageView2.contentMode = UIViewContentModeScaleAspectFill;

  topImageView2.clipsToBounds =YES;

  [_bgView addSubview:topImageView2];


}

-(void)configSGGuidePageTabBar {

  UIImageView *topImageView1 = UIImageView.alloc.init;

  if(SGUserDefaultGet(SG_ActivityBtn_CacheKey)) {

    topImageView1.frame = CGRectMake(4.0/15.0*SGScreen_Width-20.0, SGScreen_Height-(isIphoneX?139:124),168,124);

   }else{

    topImageView1.frame = CGRectMake(4.0/12.0*SGScreen_Width-20.0, SGScreen_Height-(isIphoneX?139:124),168,124);

   }

  topImageView1.image = [UIImage imageNamed:@"guide3-1"];

  topImageView1.contentMode = UIViewContentModeScaleAspectFill;

  topImageView1.clipsToBounds =YES;

  [_bgView addSubview:topImageView1];

  //底部配置了中间按钮

  UIImageView *topImageView2 = [[UIImageView alloc]initWithFrame:CGRectMake(68, topImageView1.top-5-109,240,109)];

  topImageView2.image = [UIImage imageNamed:@"guide3-2"];

  topImageView2.contentMode = UIViewContentModeScaleAspectFill;

  topImageView2.clipsToBounds =YES;

  [_bgView addSubview:topImageView2];


}

-(void)configSGGuidePageTop3 {

  CGFloat with1= [SGHelper getWidthWithText:@"推荐"height:20font:[UIFont fontWithName:@"Helvetica-Bold"size:17]];

  CGFloat with2= [SGHelper getWidthWithText:@"活动"height:20font:[UIFont fontWithName:@"Helvetica-Bold"size:15]];

  CGFloat with3= [SGHelper getWidthWithText:@"榜单"height:20font:[UIFont fontWithName:@"Helvetica-Bold"size:15]];

  UIImageView *topImageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(25+with1+15,87,20+with2+35+with3+30,120)];

  topImageView1.image = [UIImage imageNamed:@"guide4-1"];

  topImageView1.contentMode = UIViewContentModeScaleAspectFill;

  topImageView1.clipsToBounds =YES;

  [_bgView addSubview:topImageView1];

  //底部配置了中间按钮

  UIImageView *topImageView2 = [[UIImageView alloc]initWithFrame:CGRectMake(60, topImageView1.bottom+5,240,133)];

  topImageView2.image = [UIImage imageNamed:@"guide4-2"];

  topImageView2.contentMode = UIViewContentModeScaleAspectFill;

  topImageView2.clipsToBounds =YES;

  [_bgView addSubview:topImageView2];


}

#pragma mark--Action

-(void)jumpGuide {

  //跳过直接移除并标记新功能引导页已被浏览不再展示

  [[NSUserDefaults standardUserDefaults] setBool:YESforKey:SGGuidePageTop1Key];

  [_bgView removeFromSuperview];

  [[_bgView subviews] makeObjectsPerformSelector:@selector(removeFromSuperview)];

  _bgView =nil;

}

- (void)tap:(UITapGestureRecognizer *)recognizer {

    UIView *bgView = recognizer.view;

    [bgView removeFromSuperview];

    [bgView removeGestureRecognizer:recognizer];

    [[bgView subviews] makeObjectsPerformSelector:@selector(removeFromSuperview)];

    bgView =nil;

    [[NSUserDefaults standardUserDefaults] setBool:YESforKey:_guidePageKey];

    if(_finish) _finish();

}

@end

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

推荐阅读更多精彩内容