I am building an app where I\'d like to store user information locally on the device, without using any server database - but everything on the device side. I am looking to
if you just storing a few values and don't need any search logic, you could take a look into NSUserDefaults
[NSUserDefaults standardUserDefaults]
its just an dictionary where you can store arrays, strings, int, objects and access by a NSString key
internally it's a just plist, so you can open it with xcode to quicky see the current state