I wonder how many and how big strings I can save using UserDefaults.standard
Eg:
static func saveUsername(_ token: String) {
userDefaults.set(token, forKey: "username")
userDefaults.synchronize()
}
I want to save my users: username, email, address(state,city,street), first name, last name
But I am not sure how big/how many strings I can save or what kind of impact it has on my app storing many strings