ios-unity/Classes_cocos/UIViewController+Wallet.h
2022-11-28 21:53:04 +08:00

23 lines
515 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)signWithGoogle:(NSString *)funid;
-(void)signWithApple:(NSString *)funid;
-(void)signOutGoogle:(NSString *)funid;
-(void)saveKey:(NSString *) account key:(NSString *) key;
-(NSString *)loadKey:(NSString *) account;
//-(void)nativeCb:(NSString *)funid hasErr: (BOOL) hasErr dataStr:(NSString *) dataStr;
@end