2009-10-06 41 views
0

我正在嘗試向使用cookie安全會話的站點發布POST。 Ofcourse這不適用於我在下面發佈的代碼。它保持對未經授權的消息的迴應。如何在使用iPhone SDK中的URLConnection進行POSTING時啓用cookie?

有沒有什麼辦法可以在我的代碼中使用cookie或至少模擬cookie的使用?

NSURL *url = [[NSURL alloc] initWithString:@"https://long_and_complicated_url"]; 
NSURLRequest *request = [[NSURLRequest alloc] initWithURL: url]; 
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self]; 

問候 // Abeansits

回答