소스 검색

【会员系统】修复“付费版APP,标准版-未登录,导航栏“PDF to Office”应该先弹出登录界面”

wanjun 4 일 전
부모
커밋
0e640f6d3b
1개의 변경된 파일9개의 추가작업 그리고 5개의 파일을 삭제
  1. 9 5
      PDF Office/PDF Master/Class/Purchase/DMG/Verification/KMVerificationMessageViewController.m

+ 9 - 5
PDF Office/PDF Master/Class/Purchase/DMG/Verification/KMVerificationMessageViewController.m

@@ -630,12 +630,16 @@ NSPopoverDelegate>
     [embeddedWC.window center];
 #endif
 #else
-    [[KMProductCompareWC shared] setOrientation:YES];
-    [[KMProductCompareWC shared] setOrientationType:KMCompareTableTypePro_Base];
-    [[KMProductCompareWC shared] showWindow:nil];
-
+    if ([KMMemberInfo shared].isLogin) {
+        [[KMMemberInfo shared] productCompareShow];
+    } else {
+        [[KMLoginWindowsController shared] openWindow:^(BOOL success) {
+            if (success) {
+                [[KMMemberInfo shared] productCompareShow];
+            }
+        }];
+    }
 #endif
-
 }
 
 - (NSAttributedString *)numberConvertColor:(NSColor*)color String:(NSString *)string {