Saving Data in iOS

May 31 2022 · Swift 5.5, iOS 15, Xcode 13

Part 3: Property Lists

21. Challenge: Reading Property Lists

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 20. Challenge: Saving Property Lists Next episode: 22. Comparing JSON & Property Lists

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 21. Challenge: Reading Property Lists

This course was originally recorded in April 2020. It has been reviewed and all content and materials updated as of November 2021.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Back to back challenges, phew! Don’t worry, as you saw in the previous video it’s really simple to migrate from using JSON to using PLists.

private func loadPListPrioritizedTasks() {
  ...
}
do {
  let tasksData = try Data(contentsOf: tasksPListURL)
  prioritizedTasks = try decoder.decode([PrioritizedTasks].self, from: tasksData)
} catch let error {
  print(error)
}
let decoder = PropertyListDecoder()
loadPListPrioritizedTasks()
guard FileManager.default.fileExists(atPath: tasksPListURL.path) else {
  return
}