1234567891011121314151617181920212223 |
- //
- // HKClipperVeiw.h
- // HKBaseDemo
- //
- // Created by hukaiyin on 16/8/9.
- // Copyright © 2016年 hukaiyin. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM (NSUInteger, ClipperType) {
- ClipperTypeImgMove,
- ClipperTypeImgStay
- };
- @interface HKClipperVeiw : UIView
- @property (nonatomic, strong) UIImage *baseImg;
- @property (nonatomic, assign) CGSize resultImgSize;
- @property (nonatomic, assign) ClipperType type;
- - (UIImage *)clipImg;
- @end
|