03-11-2009, 12:48 PM
|
#2 (permalink)
|
|
Registered Member
Join Date: Oct 2008
Location: Denver, CO
Posts: 2,122
|
Search here and/or Google. You will find plenty of code examples for performing HTTP form posts.
Some of the classes involved are NSURLConnection and NSURLRequest.
But if your URL is just as you posted then this is not a HTTP POST but an HTTP GET. That is much easier.
Just use the above classes passing in your URL with whatever query parameters you need. The response will contain whatever is sent back (text or HTML). You can then parse that data as needed.
|
|
|