Is there a way using the iPhone SDK to get the same results as an HTTP POST or GET methods?
|
10
|
|
|
|
|
|
That really worked for me! Just new to objective-c and trying to figure out the byte array that comes from [responseData data] to a string. |
||
|
|
|
|
Assume your class has a
And then add the following methods to your class:
This will send a GET. By the time the final method is called, Alternately, for POST, replace the first block of code with:
|
||
|
|
|
If you're using Objective C, you'll need to use the NSURL, NSURLRequest, and NURLConnection classes. Apple's NSURLRequest doc. HttpRequest is for JavaScript. |
||
|
|
