Reputation: 1759
There is a wordpress powered website ,, and i need to develop a native iphone app for the same site , since am born new to the social networks development, i have spent so much of time to find a plugin to do data transaction , but i could not find any , my question is, can we use any of the wordpress plugins to fetch data from the remote database (or to insert data to the remote database) from an iphone app?? if not, is there any other powerful methods to access remote database without using the web services...please help me out ,thanx in advance
Upvotes: 0
Views: 454
Reputation: 31016
WordPress plugins are server-side pieces of code that affect how the WordPress installation behaves. They don't run as part of a client application. If you're building a native app, you will need to create Objective-C that talks to the server.
A quick Google search gave me this as a likely source of information about how to communicate: http://codex.wordpress.org/XML-RPC_WordPress_API
Upvotes: 1