Clément Raussin

1pod
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];
许可证: 自定义