Reputation: 58786
I am developing an app where iphone and android phones need to send requests to different servers. Are there any restrictions on this (ie: can we only send via apple gateway)?
Upvotes: 0
Views: 115
Reputation: 69027
You can absolutely send request to any server. Have a look at NSURLRequest
and NSURLConnection
if you are interested in communicating through the HTTP protocol.
Anyway, for HTTP communication, I strongly suggest the ASIHTTP framework. It makes everything easier.
Here you can find a general overview of what networking technologies Apple offers.
Upvotes: 1