ICTutorialOverlay 0.0.6

ICTutorialOverlay 0.0.6

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布日期最后一个发布版本2014年12月

未指定用户 维护。



  • 作者
  • Ichito Nagata

制作 "Overlay 教程" 的实用工具

将 ICTutorialOverlay 添加到您的项目

从 GitHub 克隆

  1. 从 github 克隆仓库并直接复制文件,或者将其作为 git 子模块添加。
  2. 将 ICTutorialOverlay 和 RuntimeUtils (.h 和 .m) 文件添加到您的项目中。

示例用法

ICTutorialOverlay *overlay = [[ICTutorialOverlay alloc] init];
overlay.hideWhenTapped = NO;
overlay.animated = YES;
[overlay addHoleWithView:self.roundRectButton padding:8.0f offset:CGSizeZero form:ICTutorialOverlayHoleFormRoundedRectangle transparentEvent:YES];


UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 170, 220, 150)];
label.backgroundColor = [UIColor clearColor];
label.textColor = [UIColor whiteColor];
label.numberOfLines = 0;
label.text = @"You can place any views on the overlay";
[overlay addSubview:label];

[overlay show];

## Suggestions, requests, feedback and acknowledgements

Any feedback can be can be sent to: [email protected].

This software is licensed under the MIT License.