CRProductTour 0.0.2

CRProductTour 0.0.2

测试已测试
Lang语言 Obj-CObjective C
许可证 自定义
发布最后发布2015 年 5 月

Clément Raussin 维护。



iOS 产品导览

此弹出控件是一个类似 Garaband(iOS) 的用户帮助系统。在您的按钮、uiview 区域(扩展...)旁边显示气泡,以帮助用户了解您应用程序

示例

PreviewImage

集成

productTourView = [[CRProductTour alloc] initWithFrame:self.view.frame] ;

//Setup your bubbles
CRBubble *bubbleButton1 = [[CRBubble alloc] initWithAttachedView:_button1 title:@"My Title" description:@"A smal description" arrowPosition:CRArrowPositionBottom andColor:[UIColor redColor]];

NSMutableArray *bubbleArray = [[NSMutableArray alloc] initWithObjects:bubbleButton1, nil];

[productTourView setBubbles:bubbleArray];

[self.view addSubview:productTourView];

如果您想要相同的结果,不要忘记添加 BebasNeue 字体

功能

  • 易于集成
  • 颜色、字体大小自定义
  • 不同的箭头方向
  • 多行或单行描述
  • 两种不同的淡入淡出动画效果(BOOL activeAnimation=YES; //YES 为全动画,NO 为淡入淡出动画)
  • 集成示例