1234567891011121314151617 |
- //
- // LHSIDCardScaningView.h
- // 身份证识别
- //
- // Created by huashan on 2017/2/17.
- // Copyright © 2017年 LiHuashan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface LHSIDCardScaningView : UIView
- @property (nonatomic,assign) CGRect facePathRect;
- ///0:正而 1:反面
- @property (nonatomic) int cardType;
- -(void)loadImage;
- @end
|