Browse Source

1.修复输入密码页面点击扫码 扫描不正确的二维码 没有调整提示页面问题--需要同步到主干

huangxiaodong 1 month ago
parent
commit
052e1d62e1

+ 3 - 2
创维盒子/双子星云手机/AppDelegate/SceneDelegate.m

@@ -1143,10 +1143,11 @@
 - (void)scanChangeDeviceFun:(NSNotification*)not
 {
     
-    //TipsQRCodeForChangeDeviceViewController *nextVC = [[TipsQRCodeForChangeDeviceViewController alloc] init];
-    QRCodeScanForChangeDeviceViewController *nextVC = [[QRCodeScanForChangeDeviceViewController alloc] init];
+    TipsQRCodeForChangeDeviceViewController *nextVC = [[TipsQRCodeForChangeDeviceViewController alloc] init];
+    //QRCodeScanForChangeDeviceViewController *nextVC = [[QRCodeScanForChangeDeviceViewController alloc] init];
     nextVC.isRootVCType = YES;
     BaseNavigationController *nextNav = [[BaseNavigationController alloc] initWithRootViewController:nextVC];
+    [nextVC qrcodeBtnPressed];
     self.window.rootViewController = nextNav;
     
 }

+ 2 - 0
创维盒子/双子星云手机/Class/Set/ChangeDevice/TipsQRCodeForChangeDeviceViewController.h

@@ -13,6 +13,8 @@ NS_ASSUME_NONNULL_BEGIN
 @property(nonatomic,assign)BOOL isRootVCType;
 @property(nonatomic,assign)BOOL isNeedToShowAleatType;
 @property(nonatomic,assign)NSInteger getSNMsgcode;
+
+- (void)qrcodeBtnPressed;
 @end
 
 NS_ASSUME_NONNULL_END