1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| //
| // HMScannerMaskView.h
| // HMQRCodeScanner
| //
| // Created by 刘凡 on 16/1/3.
| // Copyright © 2016年 itheima. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| /// 扫描遮罩视图
| @interface HMScannerMaskView : UIView
|
| /// 使用裁切区域实例化遮罩视图
| ///
| /// @param frame 视图区域
| /// @param cropRect 裁切区域
| ///
| /// @return 遮罩视图
| + (instancetype)maskViewWithFrame:(CGRect)frame cropRect:(CGRect)cropRect;
|
| /// 裁切区域
| @property (nonatomic) CGRect cropRect;
|
| @end
|
|