iOS提示气泡控件:Product Tour
CRProductTour 这个弹出控制控件是一个 iOS 用户帮助系统,在按钮和其他视图旁边显示提示气泡,介绍应用的不同特性。用法:
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];
特性
- 易于整合
- 颜色,字体大小可定制
- 不同的箭头方向
- 多行或一列用于描述
- 集成示例
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!