mop-flutter-sdk/ios/Classes/FinAppletExt/Client/FATExtClient.h

29 lines
590 B
Dart
Raw Permalink Normal View History

2023-12-06 14:56:29 +08:00
//
// FATExtClient.h
// FinAppletExtension
//
// Created by Haley on 2020/8/11.
// Copyright © 2020 finogeeks. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface FATExtClient : NSObject
+ (instancetype)sharedClient;
/// 版本号
+ (NSString *)SDKVersion;
- (void)fat_prepareExtensionApis;
- (void)registerGoogleMapService:(NSString*)apiKey placesKey:(NSString*)placeKey;
/// 获取webView
/// @param frame frame
/// @param URL 网页的URL
/// @param appletId 小程序ID
- (UIView *)webViewWithFrame:(CGRect)frame URL:(NSURL *)URL appletId:(NSString *)appletId;
@end