Clément Raussin

1pod

CRProductTour

          This popup control is a Garaband(iOS) like user help system. Show bubble next to your buttons, uiview zones (ext...) to help the user in your application

          Integration

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

//设置气泡 CRBubble *bubbleButton1 = [[CRBubble alloc] initWithAttachedView:_button1 title:@"我的标题" description:@"简短描述" arrowPosition:CRArrowPositionBottom andColor:[UIColor redColor]];

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

[productTourView setBubbles:bubbleArray];

[self.view addSubview:productTourView];

功能

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

许可证: 自定义

  • Objective C