update demo

master
wanghualei 2020-11-04 10:54:48 +08:00
parent e54a8bbee7
commit 6859cf3cb6
4 changed files with 9 additions and 25 deletions

View File

@ -7,6 +7,7 @@ inhibit_all_warnings!
target "demo" do target "demo" do
pod 'FinApplet' pod 'FinApplet'
pod 'FinAppletExt'
end end

View File

@ -342,11 +342,12 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = demo/Info.plist; INFOPLIST_FILE = demo/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = ( LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
"@executable_path/Frameworks", "@executable_path/Frameworks",
); );
PRODUCT_BUNDLE_IDENTIFIER = com.finogeeks.mop.demo; PRODUCT_BUNDLE_IDENTIFIER = com.finogeeks.finclip.demo;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
TARGETED_DEVICE_FAMILY = "1,2"; TARGETED_DEVICE_FAMILY = "1,2";
}; };
@ -359,11 +360,12 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
INFOPLIST_FILE = demo/Info.plist; INFOPLIST_FILE = demo/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = ( LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
"@executable_path/Frameworks", "@executable_path/Frameworks",
); );
PRODUCT_BUNDLE_IDENTIFIER = com.finogeeks.mop.demo; PRODUCT_BUNDLE_IDENTIFIER = com.finogeeks.finclip.demo;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
TARGETED_DEVICE_FAMILY = "1,2"; TARGETED_DEVICE_FAMILY = "1,2";
}; };

View File

@ -21,8 +21,8 @@
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch. // Override point for customization after application launch.
NSString *appKey = @"22LyZEib0gLTQdU3MUauAVUHSFDdTToYDWCqr0AgPGwA"; NSString *appKey = @"22LyZEib0gLTQdU3MUauATBwgfnTCJjdr7FCnywmAEM=";
FATConfig *config = [FATConfig configWithAppSecret:@"8c5c3c26420b7e66" appKey:appKey]; FATConfig *config = [FATConfig configWithAppSecret:@"bdfd76cae24d4313" appKey:appKey];
config.apiServer = @"https://mp.finogeeks.com"; config.apiServer = @"https://mp.finogeeks.com";
config.apiPrefix = @"/api/v1/mop"; config.apiPrefix = @"/api/v1/mop";

View File

@ -19,12 +19,6 @@
[super viewDidLoad]; [super viewDidLoad];
// Do any additional setup after loading the view. // Do any additional setup after loading the view.
UIButton *btn1 = [[UIButton alloc] initWithFrame:CGRectMake(100, 100, 200, 40)];
[btn1 setTitle:@"打开画图小程序" forState:UIControlStateNormal];
[btn1 setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[btn1 setBackgroundColor:[UIColor grayColor]];
[btn1 addTarget:self action:@selector(onCanvasClick:) forControlEvents:UIControlEventTouchUpInside];
UIButton *btn2 = [[UIButton alloc] initWithFrame:CGRectMake(100, 150, 200, 40)]; UIButton *btn2 = [[UIButton alloc] initWithFrame:CGRectMake(100, 150, 200, 40)];
[btn2 setTitle:@"打开官方小程序" forState:UIControlStateNormal]; [btn2 setTitle:@"打开官方小程序" forState:UIControlStateNormal];
[btn2 setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; [btn2 setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
@ -37,26 +31,13 @@
[btn3 setBackgroundColor:[UIColor grayColor]]; [btn3 setBackgroundColor:[UIColor grayColor]];
[btn3 addTarget:self action:@selector(onProfileClick:) forControlEvents:UIControlEventTouchUpInside]; [btn3 addTarget:self action:@selector(onProfileClick:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn1];
[self.view addSubview:btn2]; [self.view addSubview:btn2];
[self.view addSubview:btn3]; [self.view addSubview:btn3];
} }
- (void)onCanvasClick:(id)sender {
NSString *appId = @"5ea03fa563cb900001d73863";
//
[[FATClient sharedClient] startRemoteApplet:appId startParams:@{
@"path": @"/pages/index/index",
@"query": @""
} InParentViewController:self completion:^(BOOL result, NSError *error) {
NSLog(@"result:%d---error:%@", result, error);
}];
}
- (void)onDemoClick:(id)sender { - (void)onDemoClick:(id)sender {
NSString *appId = @"5ea0401463cb900001d73865"; NSString *appId = @"5fa214a29a6a7900019b5cc1";
// //
[[FATClient sharedClient] startRemoteApplet:appId startParams:nil InParentViewController:self completion:^(BOOL result, NSError *error) { [[FATClient sharedClient] startRemoteApplet:appId startParams:nil InParentViewController:self completion:^(BOOL result, NSError *error) {
NSLog(@"result:%d---error:%@", result, error); NSLog(@"result:%d---error:%@", result, error);
@ -65,7 +46,7 @@
- (void)onProfileClick:(id)sender { - (void)onProfileClick:(id)sender {
NSString *appId = @"5ea0412663cb900001d73867"; NSString *appId = @"5fa215459a6a7900019b5cc3";
// //
[[FATClient sharedClient] startRemoteApplet:appId startParams:nil InParentViewController:self completion:^(BOOL result, NSError *error) { [[FATClient sharedClient] startRemoteApplet:appId startParams:nil InParentViewController:self completion:^(BOOL result, NSError *error) {
NSLog(@"result:%d---error:%@", result, error); NSLog(@"result:%d---error:%@", result, error);