You could use NSString's methods that load strings from URLs to do that. You would get the response in the string which could be useful as well. But it's synchronous, it'll lock the UI while it's executing. If the timing is unacceptable you may want to look into asynchronous methods, or just execute it in a new thread.
|