33 lines
879 B
Objective-C
33 lines
879 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"
|
|
#import "UIImage+LogoQrCode.h"
|
|
|
|
@implementation MaskShareBoootomViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
self.backgroundColor = [UIColor clearColor];
|
|
// UIImage *imag = [ZXingWrapper createCodeWithString:@"giga" size:CGSizeMake(170, 170) CodeFomart:kBarcodeFormatQRCode];
|
|
|
|
UIImage *imag = [UIImage createQrImageWith:[UIImage imageNamed:@"result_logo"] logoSize:CGSizeZero qrText:@"jijia"];
|
|
self.codeImageVIew.image = imag;
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|