ClipViewController.h
699 Bytes
//
// ClipViewController.h
// Camera
//
// Created by wzh on 2017/6/6.
// Copyright © 2017年 wzh. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol ClipPhotoDelegate <NSObject>
- (void)clipPhoto:(UIImage *)image;
@end
@interface ClipViewController : xn_base_BaseViewController
@property (strong, nonatomic) UIImage *image;
@property (nonatomic, strong) UIImagePickerController *picker;
@property (nonatomic, strong) UIViewController *controller;
@property (nonatomic, weak) id<ClipPhotoDelegate> delegate;
@property (nonatomic, assign) BOOL isTakePhoto;
// 裁剪宽高比,当不为0的时候表示最终照片必须裁剪
@property (nonatomic)CGFloat cropAspectRatio;
@end