欢迎光临
我们一直在努力

新功能指示页

建站超值云服务器,限时71元/月

新功能指示页

项目介绍:

YeeGuideProject

github地址

转载请注明出处

1.本工程在EAFeatureGuideView的基础上,将FeatureGuideView以实例对象的形式,更容易控制对象生命周期。

2.FeatureGuideView现在支持点击屏幕进入下一步操作。

用法
FeatureGuideObject *object1 =[[FeatureGuideObject alloc] init];
object1.targetView = m_pRedView ;
object1.introduce =@"介绍开始,新的功能";
object1.buttonTitle =@"知道了";

FeatureGuideObject *object2 =[[FeatureGuideObject alloc] init];
object2.targetView = m_pBlueView ;
object2.introduce =@"介绍开始,新的功能";
object2.introduceFont =[UIFont systemFontOfSize:15];

FeatureGuideObject *object3 =[[FeatureGuideObject alloc] init];
object3.targetView  = m_pGreenView ;
object3.cornerRadius= 25.0f;
object3.introduce =@"介绍开始,新的功能";
object3.buttonTitle =@"知道了";

FeatureGuideObject *object4 =[[FeatureGuideObject alloc] init];
object4.targetViewFrame  = CGRectMake(self.view.frame.size.width-50, self.navigationController.navigationBar.frame.origin.y, 45, 45) ;
object4.introduce =@"介绍开始,新的功能";
object4.cornerRadius =22.5;

[FeatureGuideView showGuideViewWithObjects:@[object4,object1,object2,object3] InView:self.tabBarController.view];

[FeatureGuideView showGuideViewWithObjects:@[object4,object1,object2,object3] version:@"1.0.0" identify:NSStringFromClass([self class]) InView:self.tabBarController.view];


UITableViewCell

//https://www.jianshu.com/p/103d6aac84b4
TableViewCell *cell=[tableView cellForRowAtIndexPath:indexPath];
CGRect targetFramefirst=[cell convertRect:cell.m_pEditBtn.frame toView:tableView];
CGRect targetFrame     =[tableView convertRect:targetFramefirst toView:self.view];
FeatureGuideObject *object1 =[[FeatureGuideObject alloc] init];
object1.targetViewFrame = targetFrame;
object1.introduce =@"介绍开始,新的功能";
object1.buttonTitle =@"知道了";
[FeatureGuideView showGuideViewWithObjects:@[object1] InView:self.tabBarController.view];
效果如下

Simulator Screen Shot - iPhone X - 2018-03-22 at 16.41.15.png
Simulator Screen Shot - iPhone X - 2018-03-22 at 16.37.07.png

后续添加功能:

1.说明文字支持富文本

2.特定条件显示控制

借鉴部分

1.AwesomeIntroGuideView

2.EAFeatureGuideView

联系我:13137880636@163.com

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 新功能指示页
分享到: 更多 (0)