I have three arrays that i would like to save so they are available when a user exits the app.
I've done research and I know that i should use User Defaults to save these.
Here are the three arrays I would like to save.
var thumbnails = [UIImage]()
var timeArray: [Int] = [Int]()
var videosArray: [URL] = [URL]()
How can I save these three arrays to User Defaults?