Would you guys help me? I found how to save and retrieve simple objects to use them as app settings.
NSUserDefaults.StandardUserDefaults.SetString("testUser","username");
NSUserDefaults.StandardUserDefaults.Init(); //Although it's strange that you have to call this method to actually save your stuff
and later you can retrieve it like that:
var username = NSUserDefaults.StandardUserDefaults.StringForKey("username");
Now, what if I need to save multiple usernames (as many as I want)? And what if I need to save multiple usernames with passwords or passhashes?