说明书更改为内置图片,微信登陆时更换手机号加强验证

This commit is contained in:
kai60
2020-12-20 17:54:01 +08:00
parent 0ece8602fb
commit 6796226366
31 changed files with 439 additions and 41 deletions
@@ -47,6 +47,7 @@
#import "StoreNameView.h"
#import "ConnectingAquarVC.h"
#import "SecondConnectWifiController.h"
#import "InfoByImageViewController.h"
@interface IfishDeviceViewController ()<UITableViewDelegate,UITableViewDataSource,LxPopViewDelegate,ShopTtemListDelegate>
@property(nonatomic,strong)UITableView *tableView;
@@ -1339,12 +1340,20 @@ Assign BOOL isPush;
-(void)pushshuoMingView{
// self.hidesBottomBarWhenPushed = YES;
// PushMasssageWebViewController*webVC=[[PushMasssageWebViewController alloc]init];
// webVC.pushlink =IFISH_DEVCEITROURL;
// //webVC.pushlink =@"http://q.eqxiu.com/s/KmmVl87l";
// webVC.pushtitle = NSLocalizedString(@"ifish_deviceuse", nil);
// [self.navigationController pushViewController:webVC animated:YES];
// self.hidesBottomBarWhenPushed = NO;
self.hidesBottomBarWhenPushed = YES;
PushMasssageWebViewController*webVC=[[PushMasssageWebViewController alloc]init];
webVC.pushlink =IFISH_DEVCEITROURL;
//webVC.pushlink =@"http://q.eqxiu.com/s/KmmVl87l";
webVC.pushtitle = NSLocalizedString(@"ifish_deviceuse", nil);
[self.navigationController pushViewController:webVC animated:YES];
InfoByImageViewController*info=[[InfoByImageViewController alloc]init];
info.title=@"产品说明书";
info.type=@"instruction";
info.image=[UIImage imageNamed:@"instruction"];
[self.navigationController pushViewController:info animated:YES];
self.hidesBottomBarWhenPushed = NO;
}