Good morning, I'm starting with swift , and I have a question about how to manage preferences.
In android , when I deal with them, if the user has not modified it, I have one by default:
String correo = prefs.getString("email", "[email protected]");
In this way, if nothing is stored, it returns the second value ... well, it is what I would like, if it does not have any value stored by the user, have one by default.