match the data with server to database in iphone
i have开发者_如何学Python server and there i have store the some data for eg;username is abc and password is 123 and same password and come in json i have to store same data in loca database by using sqlite in iphone please help me
Yes, you can store in sqllite3 database, Follow the below link..
http://www.techotopia.com/index.php/An_Example_SQLite_based_iPhone_Application
Depending on how you talk to your database, something like RestKit might be a useful, open source starting point.
You can use SBJSON Parser and then simply call [YourResponseString JSONValue]
. And you can return this into an NSDictionary.
Hope this helps.
精彩评论