소스 검색

login flow

Marino Faggiana 7 년 전
부모
커밋
0b0aa2d31a
1개의 변경된 파일5개의 추가작업 그리고 6개의 파일을 삭제
  1. 5 6
      iOSClient/Login/CCLogin.m

+ 5 - 6
iOSClient/Login/CCLogin.m

@@ -250,13 +250,12 @@
 
                 } else {
                     
+                    appDelegate.activeLoginWeb = [CCLoginWeb new];
+                    appDelegate.activeLoginWeb.loginType = _loginType;
+                    appDelegate.activeLoginWeb.delegate = (id<CCLoginDelegateWeb>)self.delegate;
+                    appDelegate.activeLoginWeb.urlBase = urlBase;
+                    
                     [self dismissViewControllerAnimated:YES completion: ^{
-                        
-                        appDelegate.activeLoginWeb = [CCLoginWeb new];
-                        appDelegate.activeLoginWeb.loginType = _loginType;
-                        appDelegate.activeLoginWeb.delegate = (id<CCLoginDelegateWeb>)self.delegate;
-                        appDelegate.activeLoginWeb.urlBase = urlBase;
-                        
                         [appDelegate.activeLoginWeb presentModalWithDefaultTheme:(UIViewController *)self.delegate];
                     }];
                 }