I’m trying to get the hang of using notifications. In my view controller class, I have a bool isFullScreen. When the value of this bool changes, I want to a notification to be sent to all observing classes. I’m not quite sure how to go about doing this, since a BOOL is not an object. How would I accomplish this?
Share
KVO Example:
If you were to do it with KVO, it would be something like the below…. :