Nilesh
Nilesh

Reputation: 67

Running AJAX code in Objective C

I am developing a native application for iPhone. I would like to know if I can able to execute AJAX code in Objective C.

Thanks! Nilesh

Upvotes: 1

Views: 3356

Answers (1)

Marek Sebera
Marek Sebera

Reputation: 40661

As from word AJAX the meaning is Asynchronous JavaScript and XML

So you need asynchronous HTTP library to fetch JSON/XML from remote server.

Take a look at these

Upvotes: 1

Related Questions