|
@@ -14,6 +14,7 @@
|
|
|
#import "BaseNavigationController.h"
|
|
|
|
|
|
#import "QRCodeScanForChangeDeviceViewController.h"
|
|
|
+#import "customToastVew.h"
|
|
|
|
|
|
@interface inputPWDViewController (){
|
|
|
NSString *pwd;
|
|
@@ -513,6 +514,16 @@
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ if([AFNetworkReachabilityManager sharedManager].networkReachabilityStatus == AFNetworkReachabilityStatusNotReachable)
|
|
|
+ {
|
|
|
+ //[[iToast makeText:NSLocalizedString(@"phone_network_fail_Tips",nil)] show];
|
|
|
+ customToastVew *view = [customToastVew makeText:NSLocalizedString(@"phone_network_fail_Tips",nil)];
|
|
|
+ [view show];
|
|
|
+ [self.view addSubview:view];
|
|
|
+
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
[connectDeviceManager shareInstance].isFirstInputPwdDone = YES;
|
|
|
ksharedAppDelegate.isDidShowPwdType = NO;
|
|
|
|