2012-10-26 66 views

回答

1

是有聯繫的衝擊下部分連接的URL,當連接被質疑或驗證我叫......

-(void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge 
{ 
    NSURLCredential *credential = [NSURLCredential credentialWithUser:self.userName 
                 password:self.userPassword 
                 persistence:NSURLCredentialPersistenceForSession] ; 
    [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge]; 
    NSLog(@"Getting Authentication Challenges"); 

} 

不知道,我發現它(和感謝不管是誰!),但是這爲我工作。但在所有誠實,我沒有使用肥皂請求,我不起訴任何連接庫...

希望這是一些幫助。

+0

當我將它放入NSURLCredential後,它是否發送加密的密碼? – surlac

+0

我認爲它的時候,它的連接請求.... (但我只是學習這個以及....) – ArQangel

相關問題