2022-11-25 15:08:47 +08:00

49 lines
1010 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// DemoListViewModel.h
// LBXScanDemo
//
//
#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>
#import "LBXScanViewStyle.h"
#import "LBXScanViewController.h"
@interface StyleDIY : NSObject
#pragma mark -模仿qq界面
+ (LBXScanViewStyle*)qqStyle;
#pragma mark --模仿支付宝
+ (LBXScanViewStyle*)ZhiFuBaoStyle;
#pragma mark -无边框内嵌4个角
+ (LBXScanViewStyle*)InnerStyle;
#pragma mark -无边框内嵌4个角
+ (LBXScanViewStyle*)weixinStyle;
#pragma mark -框内区域识别
+ (LBXScanViewStyle*)recoCropRect;
#pragma mark -4个角在矩形框线上,网格动画
+ (LBXScanViewStyle*)OnStyle;
#pragma mark -自定义4个角及矩形框颜色
+ (LBXScanViewStyle*)changeColor;
#pragma mark -改变扫码区域位置
+ (LBXScanViewStyle*)changeSize;
#pragma mark -非正方形,可以用在扫码条形码界面
+ (LBXScanViewStyle*)notSquare;
+ (AVCaptureVideoOrientation)videoOrientation;
+ (NSString*)nativeCodeWithType:(SCANCODETYPE)type;
@end