finclip ios demo
1.0.0
FinClip iOS DEMO
本專案提供在iOS 環境中執行小程式的DEMO 範例
https://www.finclip.com/ ?
官方網站| 範例小程式| 開發文件| 部署指南| SDK 整合指南| API 清單| 元件清單| 隱私承諾
有沒有想過,開發好的微信小程式能放在自己的APP 裡直接運行,只需要開發一次小程序,就能在不同的應用中打開它,是不是很不可思議?
有沒有試過,在自己的APP 中引入一個SDK ,應用中不僅可以打開小程序,還能自定義小程序接口,修改小程序樣式,是不是覺得更不可思議?
這就是FinClip ,就是有這麼多不可思議!
source 'https://github.com/CocoaPods/Specs.git'
pod 'FinApplet'
在工程的AppDelegate
中的以下方法中,呼叫SDK 的初始化方法。
- ( BOOL )application:(UIApplication *)application didFinishLaunchingWithOptions:( NSDictionary *)launchOptions {
// 需要添加至App中的代码--start
NSMutableArray *storeArrayM = [ NSMutableArray array ];
FATStoreConfig *storeConfig = [[FATStoreConfig alloc ] init ];
storeConfig. sdkKey = @"您的sdkKey信息" ;
storeConfig. sdkSecret = @"您的sdkSecret信息" ;
storeConfig. apiServer = @"服务器域名" ;
storeConfig. apmServer = @" apm统计事件的域名" ;
[storeArrayM addObject: storeConfig];
FATConfig *config = [FATConfig configWithStoreConfigs: storeArrayM];
[[FATClient sharedClient ] initWithConfig: config error: nil ];
// 需要添加至App中的代码--end
return YES ;
}
NSString *appId = @"小程序id " ;
// 打开小程序
[[FATClient sharedClient ] startRemoteApplet: appId startParams: nil InParentViewController: self completion: ^( BOOL result, NSError *error) {
NSLog ( @" result: %d ---error: %@ " , result, error);
}];
小程式ID 與微信小程式ID 不一樣喔! (這裡是特別指FinClip 平台的ID )
點擊這裡查看iOS 快速整合文檔
以下內容是您在FinClip 進行開發與體驗時,常見的問題與指引訊息
微信掃描下面二維碼,追蹤官方公眾號「凡泰極客」 ,以獲得更多精彩內容。
微信掃描下面二維碼,加入官方微信交流群,以獲得更多精彩內容。