Swift Programming
Introduction to KVO and KVC in Swift
Observing and getting notified when properties changes
KVO and KVC or Key-Value Observing and Key-Value Coding are mechanisms originally built and provided by Objective-C that allows us to locate and interact with the underlying properties of a class that inherits NSObject
at runtime. In short this mean that…