Core Data: Beyond the Basics

Jul 26 2022 · Swift 5.5, iOS 15, Xcode 13.3.1

Part 1: Fetching & Displaying Launches

11. Transient Properties

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: 10. Challenge - Displaying Tags Next episode: 12. Conclusion

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.

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

Good job on those challenges! You’ve implemented quite a few challenging features so let’s end this part of the course on an easier note. There’s one little thing I’d like to add to the app, and that is to display how many RocketLaunches are associated with each tag.

@objc var launchCount: Int {}
willAccessValue(forKey: "launches")
let count = launches.count
didAccessValue(forKey: "launches")
return count
Text("\(tag.title) (\(tag.launchCount))")