How to upload an array to a WebService
问题 I'm having some doubts about how to upload something to a WebService. I've been using this for getting info from my webservice: NSString * URLString = [NSString stringWithFormat:@"%@%@", kBaseHost, [NSString stringWithFormat:kWSProjectList, token]]; NSURL *url = [NSURL URLWithString:URLString]; NSURLRequest * request = [NSURLRequest requestWithURL:url]; [NSURLConnection sendSynchronousRequest:request inBackgroundWithCompletionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {