2011-05-27 45 views
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]; 

回答

相關問題