diff --git a/Podfile b/Podfile index 09adb97..788d774 100644 --- a/Podfile +++ b/Podfile @@ -1,13 +1,11 @@ platform :ios, "9.0" -source 'https://github.com/CocoaPods/Specs.git' - inhibit_all_warnings! target "demo" do - pod 'FinApplet' - pod 'FinAppletExt' + pod 'FinApplet', '2.22.4' + pod 'FinAppletExt', '2.22.4' end diff --git a/demo/FINDemoClientHelper.m b/demo/FINDemoClientHelper.m index 54ab7c6..7902883 100644 --- a/demo/FINDemoClientHelper.m +++ b/demo/FINDemoClientHelper.m @@ -56,7 +56,7 @@ static FINDemoClientHelper *instance = nil; NSString *appletId = appletInfo.appId; if ([appletId isEqualToString:@"5facb3a52dcbff00017469bd"]) { FINCustomMenuModel *favModel1 = [[FINCustomMenuModel alloc] init]; - favModel1.menuId = 1001; + favModel1.menuId = @"1001"; favModel1.menuTitle = @"客服"; favModel1.menuIconImage = [UIImage imageNamed:@"minipro_list_service"]; @@ -65,7 +65,7 @@ static FINDemoClientHelper *instance = nil; if ([appletId isEqualToString:@"5fa214a29a6a7900019b5cc1"]) { FINCustomMenuModel *favModel2 = [[FINCustomMenuModel alloc] init]; - favModel2.menuId = 1002; + favModel2.menuId = @"1002"; favModel2.menuTitle = @"收藏"; favModel2.menuIconImage = [UIImage imageNamed:@"minipro_list_collect"]; @@ -73,12 +73,12 @@ static FINDemoClientHelper *instance = nil; } FINCustomMenuModel *favModel1 = [[FINCustomMenuModel alloc] init]; - favModel1.menuId = 1001; + favModel1.menuId = @"1003"; favModel1.menuTitle = @"客服"; favModel1.menuIconImage = [UIImage imageNamed:@"minipro_list_service"]; FINCustomMenuModel *favModel2 = [[FINCustomMenuModel alloc] init]; - favModel2.menuId = 1002; + favModel2.menuId = @"1004"; favModel2.menuTitle = @"收藏"; favModel2.menuIconImage = [UIImage imageNamed:@"minipro_list_collect"];