xcode7업데이트 이후 iOS9 설정하는거 보고 설정해서 로그인이 잘되었는데요… 갑자기 안되네요…-_-;; 일단 sdk최신버전으로 업데이트 했는데도 안됩니다.
로그인 눌렀을때 아래 소스코드와 같은 로직을 탑니다.
하지만 처음 눌렀을때는 handler블락내부 로직이 전혀 실행되지 않고 그냥 지나가 버립니다…
다시 한번 누를경우 handler블락 내부가 실행되기는 하지만 error가 떨어집니다.
KOErrorDomain code:2
@“NSLocalizedDescription” : @“The operation is cancelled.”
@“NSLocalizedFailureReason” : @“The operation has been cancelled by user.”
///////////////////////////////////
[[KOSession sharedSession] close];
[[KOSession sharedSession] openWithCompletionHandler:^(NSError *error) {
if ([[KOSession sharedSession] isOpen]) {
// login success
KSLog(@"%@",[KOSession sharedSession].accessToken);
} else {
}
}];