123456789101112131415161718192021222324 |
- //
- // SWQRCodeConfig.m
- // SWQRCode_Objc
- //
- // Created by zhuku on 2018/4/4.
- // Copyright © 2018年 selwyn. All rights reserved.
- //
- #import "SWQRCodeConfig.h"
- @implementation SWQRCodeConfig
- - (instancetype)init {
- self = [super init];
- if (self) {
- self.scannerCornerColor = [UIColor colorWithRed:65/255.0 green:140/255.0 blue:226/255.0 alpha:1.0];
- self.scannerBorderColor = [UIColor colorWithRed:65/255.0 green:140/255.0 blue:226/255.0 alpha:1.0];
- self.indicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
- }
- return self;
- }
- @end
|