1
即時通訊爲iphone.I製作一個客戶端服務器程序我將使用ASIHTTPRequest上傳文件到服務器,通過從stackoverflow中選擇以下代碼。我想知道,我可以在基於視圖的應用程序中使用它,以及應該導入使用ASIHTTPRequest。在iphone中使用ASIHTTPRequest
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
[request addPostValue:token forKey:@"token"];
[request setFile:recorderFilePath forKey:@"thefile"];
[request startSynchronous];
同意, ASIHTTPRequest網站上的文檔和文件提供了您所需的一切。 – 2011-05-27 06:15:18