小程序容器 PhizClip 苹果运行环境,让小程序在苹果应用中无缝运行 / iOS DEMO for PhizClip
 
Go to file
wanghualei 59902cdf56 add 转发示例、自定义更多菜单示例、设置灰度信息示例 2020-12-18 09:28:26 +08:00
demo add 转发示例、自定义更多菜单示例、设置灰度信息示例 2020-12-18 09:28:26 +08:00
demo.xcodeproj add 转发示例、自定义更多菜单示例、设置灰度信息示例 2020-12-18 09:28:26 +08:00
doc update 2020-04-04 20:53:44 +08:00
.gitattributes Create .gitattributes 2020-02-22 11:44:03 +08:00
.gitignore fix 2020-02-22 11:21:27 +08:00
LICENSE Initial commit 2020-04-23 21:48:05 +08:00
Podfile update 2020-11-13 18:08:40 +08:00
README.md Update README.md 2020-03-15 19:22:21 +08:00

README.md

五行代码让你的App运行小程序

1、 修改Podfile文件增加FinApplet依赖

source 'https://github.com/CocoaPods/Specs.git'
pod 'FinApplet'

2、初始化 SDK 五行代码完成初始化

在工程的 AppDelegate 中的以下方法中,调用 SDK 的初始化方法。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
	
    NSString *appKey = @"SDKKEY";
    FATConfig *config = [FATConfig configWithAppSecret:@"SECRET" appKey:appKey];
    config.apiServer = @"https://mp.finogeeks.com"; 
    config.apiPrefix = @"/api/v1/mop";
    [[FATClient sharedClient] initWithConfig:config error:nil];
    
    return YES;
}

3、打开小程序

NSString *appId = @"小程序id";
// 打开小程序
[[FATClient sharedClient] startRemoteApplet:appId startParams:nil InParentViewController:self completion:^(BOOL result, NSError *error) {
    NSLog(@"result:%d---error:%@", result, error);
}];
  • SDKKEYSecret 可以从免费一键部署的社区版的管理后台获取。
  • apiServer 为这里是小程序生态后端的服务地址也就是前文所输入的IP:端口
  • 小程序id 为在管理后台上架的小程序appid
  • 上述的参数可以在前文服务器部署的后台界面上获取,亦可以在没有部署服务端的情况下在https://mp.finogeeks.com快速注册,免费获取。
  • 具体的操作方法请参考 iOS集成