小程序容器 PhizClip 苹果运行环境,让小程序在苹果应用中无缝运行 / iOS DEMO for PhizClip
 
Go to file
wanghualei 33f965c995 add 扫码打开小程序的功能 2022-04-21 10:52:28 +08:00
.github/workflows Create pull_request.yml 2022-02-08 15:48:04 +08:00
demo add 扫码打开小程序的功能 2022-04-21 10:52:28 +08:00
demo.xcodeproj add 扫码打开小程序的功能 2022-04-21 10:52:28 +08:00
doc update 2020-04-04 20:53:44 +08:00
media/image update image 2021-02-05 15:40:37 +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 add 扫码打开小程序的功能 2022-04-21 10:52:28 +08:00
README.md Update README.md 2021-11-14 23:14:30 +08:00

README.md

FinClip iOS DEMO

本项目提供在 iOS 环境中运行小程序的 DEMO 样例

👉 https://www.finclip.com/ 👈


🤔 FinClip 是什么?

有没有想过,开发好的微信小程序能放在自己的 APP 里直接运行,只需要开发一次小程序,就能在不同的应用中打开它,是不是很不可思议?

有没有试过,在自己的 APP 中引入一个 SDK ,应用中不仅可以打开小程序,还能自定义小程序接口,修改小程序样式,是不是觉得更不可思议?

这就是 FinClip ,就是有这么多不可思议!

⚙️ 操作步骤

第一步 修改 Podfile 文件,增加 FinApplet 依赖

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

第二步 五行代码完成SDK初始化

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

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

第三步打开小程序

NSString *appId = @"小程序id";
// 打开小程序
[[FATClient sharedClient] startRemoteApplet:appId startParams:nil InParentViewController:self completion:^(BOOL result, NSError *error) {
    NSLog(@"result:%d---error:%@", result, error);
}];
  • SDK KEYSDK SECRET 可以从 FinClip 获取,点 这里 注册账号;
  • 进入平台后,在「应用管理」页面添加你自己的包名后,点击「复制」即可获得 key\secret\apisever 字段;
  • apiServerapiPrefix 是固定字段,请直接参考本 DEMO
  • 小程序 ID 是管理后台上架的小程序 APP ID需要在「小程序管理」中创建并在「应用管理」中关联

小程序 ID 与 微信小程序ID 不一样哦!(这里是特指 FinClip 平台的 ID

📋 集成文档

点击这里 查看 iOS 快速集成文档

🔗 常用链接

以下内容是您在 FinClip 进行开发与体验时,常见的问题与指引信息

☎️ 联系我们

微信扫描下面二维码,关注官方公众号 「凡泰极客」,获取更多精彩内容。

微信扫描下面二维码邀请进官方微信交流群加好友备注finclip 咨询),获取更多精彩内容。

Stargazers

Stargazers repo roster for @finogeeks/finclip-ios-demo

Forkers

Forkers repo roster for @finogeeks/finclip-ios-demo