jopen
10年前发布

iOS 添加文字到图像:Jot

Jot (Objective-C) -- 一个 iOS 框架,轻松添加图形和文字到图像中。

iOS 添加文字到图像:Jot

示例代码:

#import "ExampleViewController.h"  #import <jot.h>     @interface ExampleViewController ()  @property (nonatomic, strong) JotViewController *jotViewController;  @end     @implementation ExampleViewController     - (void)viewDidLoad  {      [super viewDidLoad];      _jotViewController = [JotViewController new];      self.jotViewController.delegate = self;         [self addChildViewController:self.jotViewController];      [self.view addSubview:self.jotViewController.view];      [self.jotViewController didMoveToParentViewController:self];      self.jotViewController.view.frame = self.view.frame;  }

项目主页:http://www.open-open.com/lib/view/home/1437968873160

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1437968873160.html
Jot 图形/图像处理