| 123456789101112131415161718192021222324252627282930313233 |
- //
- // PickerImageView.h
- // 相机
- //
- //
- #import <UIKit/UIKit.h>
- @interface DKPhotoPickerImageView : UIImageView
- /**
- * 是否有蒙版层
- */
- @property (nonatomic , assign , getter=isMaskViewFlag) BOOL maskViewFlag;
- /**
- * 蒙版层的颜色,默认白色
- */
- @property (nonatomic , strong) UIColor *maskViewColor;
- /**
- * 蒙版的透明度,默认 0.5
- */
- @property (nonatomic , assign) CGFloat maskViewAlpha;
- /**
- * 是否有右上角打钩的按钮
- */
- @property (nonatomic , assign) BOOL animationRightTick;
- /**
- * 是否视频类型
- */
- @property (assign,nonatomic) BOOL isVideoType;
- @end
|