UNICORN - iOS
MCropImageView.h
1 //
2 // MCropImageView.h
3 //
4 // Created by saimushi on 2014/10/08.
5 //
6 
7 #import "MEditImageView.h"
8 
9 @class MCropImageView;
10 
11 typedef void(^MCropCompletionHandler)(MCropImageView *mcropImageView, BOOL finished, UIImage *image);
12 
14 
15 - (id)initWithFrame:(CGRect)frame :(UIImage *)argImage :(int)argCropWith :(int)argCropHeight :(BOOL)argUseFrame :(MCropCompletionHandler)argCompletionHandler;
16 - (id)initWithFrame:(CGRect)frame :(UIImage *)argImage :(int)argCropWith :(int)argCropHeight :(BOOL)argUseFrame :(UIView*)argOverlayView :(MCropCompletionHandler)argCompletionHandler;
17 
18 - (void)show:(BOOL)animated;
19 - (void)dissmiss:(BOOL)animated;
20 - (void)onPushCancelButton:(id)sender;
21 - (void)onPushOkButton:(id)sender;
22 
23 @end
Definition: MCropImageView.h:13
Definition: MEditImageView.h:131