Mano
Mano

Reputation: 389

can i able to call web services from my iphone application instead of retriving the data from database?

I am new to iphone development.previously i have retrive the data from database... I want to know can i able to call web services from my iphone application or not...

if there is a possiblity to call the web services from my iphone Application plz give me the detail explanation ....

how can i call the web services from my iphone App?

Thank u...

Upvotes: 0

Views: 214

Answers (1)

shosti
shosti

Reputation: 7422

Yes, you can call web services. How you do so depends exactly on the web service. To download data, you can use NSURLConnection or a related class. If the data is JSON, you can then use a library such as TouchJSON to interpret the data. If it's XML, you can use TouchXML or the native libxml.

Upvotes: 1

Related Questions