// // HMScannerMaskView.h // HMQRCodeScanner // // Created by 刘凡 on 16/1/3. // Copyright © 2016年 itheima. All rights reserved. // #import /// 扫描遮罩视图 @interface HMScannerMaskView : UIView /// 使用裁切区域实例化遮罩视图 /// /// @param frame 视图区域 /// @param cropRect 裁切区域 /// /// @return 遮罩视图 + (instancetype)maskViewWithFrame:(CGRect)frame cropRect:(CGRect)cropRect; /// 裁切区域 @property (nonatomic) CGRect cropRect; @end