欢迎光临
我们一直在努力

一个简洁的白板库

建站超值云服务器,限时71元/月

一个简洁的白板库

项目介绍:

项目介绍:
仓库地址: https://github.com/MakeHui/MHWhiteboard

使用:

  1. #import <MHWhiteboard/MHWhiteboard.h>
  2. MHWhiteboardView *whiteboardView = [[MHWhiteboardView alloc] initWithFrame:CGRectMake(0, 0, 375, 500)];
  3. [whiteboardView setBrushColor:[UIColor redColor]];    // 设置画笔颜色
  4. [whiteboardView setBrushWidth:10.0f];    // 设置画笔宽度
  5. [whiteboardView setForegroundImage:[UIImage new]];    // 设置前景图片
  6. [whiteboardView setBackgroundImage:[UIImage new]];    // 设置背景图片
  7. [whiteboardView undo];    // 撤销
  8. [whiteboardView repeat]; // 回撤
  9. [whiteboardView clearBackgroundImage];    // 清除背景图片
  10. [whiteboardView clearAll];    // 清空白板
  11. // Set current tool
  12. typedef NS_OPTIONS(NSUInteger, MHPathModelAction) {
  13.     MHPathModelActionLine = 1 << 16,
  14.     MHPathModelActionStraightLine = 1 << 17,
  15.     MHPathModelActionCircle = 1 << 18,
  16.     MHPathModelActionRectangle = 1 << 19,
  17.     MHPathModelActionPolygon = 1 << 20,
  18.     MHPathModelActionText = 1 << 21,
  19.     // MHPathModelActionSmear = 1 << 22,
  20.     // MHPathModelActionMosaic = 1 << 23,
  21. };
  22. whiteboardView.pathModelAction = MHPathModelAction;

复制代码

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 一个简洁的白板库
分享到: 更多 (0)