• Stars
    star
    510
  • Rank 86,627 (Top 2 %)
  • Language
    Objective-C
  • License
    Apache License 2.0
  • Created almost 11 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

ProductTour is an iOS bubble tutorial to help the user understand your interface. (The same of Garaband help system)

iOS Product Tour

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 Example

PreviewImage

Integration

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];

Don't forget to add BebasNeue font if you want the same result

Features

  • Easy integration
  • Color, font size customization
  • Different arrow directions
  • Multi-line or mono-line for description
  • Two differents animations for dismiss/appear bubbles (BOOL activeAnimation=YES; //YES for full animation, NO for fade animation)
  • Integration example