Skip to content

BasheerSience/ProductTour

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
  • Integration example

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published