19 lines
408 B
Objective-C
19 lines
408 B
Objective-C
//
|
|
// UIViewController+QR.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by zhl on 2022/11/28.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UIViewController (QR)
|
|
-(void)showQRCode:(NSString *) content title:(NSString *) title oid:(NSString *) oid;
|
|
-(void)loadRestoreKey:(NSString *)funid oid:(NSString *) oid;
|
|
-(void)scanQRCode:(NSString *)funid title:(NSString *) title;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|