我想將圖像,視頻和音頻文件上傳到服務器。我已閱讀this thread的類似主題,但無法完全理解代碼的流程。如果你能向我推薦一些示例代碼或教程,那就太好了。我使用下面的代碼,而無需任何介質連接到服務器通過xcode的多部分HTTP請求
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
NSString *url =[[NSString alloc]initWithFormat:@"%@",[NetworkConstants getURL]];
NSURL *theURL =[NSURL URLWithString:url];
[url release];
NSMutableURLRequest *theRequest =[NSMutableURLRequest requestWithURL:theURL cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:0.0f];
[theRequest setHTTPMethod:@"POST"];
NSString *theBodyString = [NSString stringWithFormat:@"json1=%@&userID=%@",jsonObject,[GlobalConstants getUID]];
NSData *theBodyData = [theBodyString dataUsingEncoding:NSUTF8StringEncoding];
[theRequest setHTTPBody:theBodyData];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if (conn) {
NSLog(@"Successful in sending sync");
}
else {
NSLog(@"Failed Connection in sending sync");
}
[conn release];
這將是對我來說真的很方便,如果事情可以做編輯的這部分代碼。
任何形式的幫助將不勝感激。
在此先感謝!
如果您正確標記了您的問題,您將會得到更好(或更多)的答案。僅僅因爲你使用xcode編寫代碼並不意味着它與xcode相關。 –
感謝您的意見....將保持一個說明...... :) – devsri