22 lines
522 B
Objective-C
22 lines
522 B
Objective-C
//
|
|
// UIViewController+Wallet.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by zhl on 2022/9/1.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface UIViewController (Wallet)
|
|
|
|
+(void)toWallet:(NSString *)url;
|
|
-(void)scanQRCode:(NSString *)funid title:(NSString *) title;
|
|
-(void)showQRCode:(NSString *)funid content:(NSString *) content title:(NSString *) title oid:(NSString *) oid;
|
|
-(void)loadRestoreKey:(NSString *)funid oid:(NSString *) oid;
|
|
-(void)signWithGoogle:(NSString *)funid;
|
|
-(void)signOutGoogle:(NSString *)funid;
|
|
@end
|