Xamarin iOS - NSUserDefaults Never Saves
Aug 4, 2016

This problem is caused by either not calling Synchronize() or your “key” is in the wrong position for the Set______() functions.

string value = "my value";

var p = NSUserDefaults.StandardUserDefaults;
p.SetString(value, "key_goes_here");
p.Synchronize();
ios Related
    Comments