GiGaMaskTime/GIGA/Modules/Mask/View/MaskSharesViews/MaskShareBoootomViewCell.m

31 lines
721 B
Objective-C

//
// MaskShareBoootomViewCell.m
// GIGA
//
// Created by lianxiang on 2018/9/21.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import "MaskShareBoootomViewCell.h"
#import "ZXingWrapper.h"
@implementation MaskShareBoootomViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
self.backgroundColor = [UIColor clearColor];
UIImage *imag = [ZXingWrapper createCodeWithString:@"app_logo" size:CGSizeMake(85, 85) CodeFomart:kBarcodeFormatQRCode];
self.codeImageVIew.image = imag;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end