17 lines
302 B
Objective-C
17 lines
302 B
Objective-C
//
|
|
// UIImage+LogoQrCode.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/25.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIImage (LogoQrCode)
|
|
|
|
+(UIImage *)createQrImageWith:(UIImage *)logo logoSize:(CGSize )size qrText:(NSString *)text;
|
|
|
|
|
|
@end
|