2015-12-09 64 views

回答

0

你必須創建會話第一。

爲了擺脫這個你應該等待時創建會話請求將完成並進行下一個請求:

[QBAuth createSessionWithDelegate:self]; 

...

- (void)completedWithResult:(Result *)result{ 
    if(result.success && [result isKindOfClass:QBAAuthSessionCreationResult.class]){ 

     // you got token here - perform any other requests after this 

     [QBUsers logInWithUserLogin:... delegate:self]; 

    } 
} 

也許它會幫助你。

+0

我得到這個錯誤:https://github.com/QuickBlox/quickblox-ios-sdk/issues/958 - 你能幫我解決這個問題嗎?如果您知道使用QuickBlox iOS設置。 – Siddharth