iOS提示气泡控件:Product Tour
jopen
11年前
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];
特性
- 易于整合
- 颜色,字体大小可定制
- 不同的箭头方向
- 多行或一列用于描述
- 集成示例