iOS 图像编辑控件:CLImageEditor
jopen
11年前
CLImageEditor 为iPhone应用提供了一些基本的图片编辑功能。这个ViewController使用简单,能够很容易地将其作为UIImagePickerController的一部分。
简法用法:
#import "CLImageEditor.h" @interface ViewController()@end - (void)presentImageEditorWithImage:(UIImage*)image { CLImageEditor *editor = [[CLImageEditor alloc] initWithImage:image]; editor.delegate = self; [self presentViewController:editor animated:YES completion:nil]; }