Answers for "swift 5 userdefaults"

2

save date to userdefaults swift

//save as Date
UserDefaults.standard.set(Date(), forKey: key)

//read
let date = UserDefaults.standard.object(forKey: key) as! Date
let df = DateFormatter()
df.dateFormat = "dd/MM/yyyy HH:mm"
print(df.string(from: date))
Posted by: Guest on April-03-2020
0

swift userdefaults enum

UserDefaults.standard.set(switchCurrentType.rawValue, forKey: "CurrentDefaultType")
Posted by: Guest on June-10-2020
0

swift userdefaults enum

//in the didMoveToView method put this code in
switchCurrentType = ExampleEnum(rawValue: UserDefaults.standard.integer(forKey: "CurrentDefaultType"))! //make sure exclamation mark at the end is there or it won't read properly
Posted by: Guest on June-10-2020

Code answers related to "Swift"

Browse Popular Code Answers by Language