I have a class that creates a calendar. One of the methods finds the date the user tapped, and stores it in a CFGregorianDate object in that same class.
I have a need to know in another class when the user tapped the calendar date, but after the CFGregorianDate object has been updated, so I can do some backend processing.
How do I get notification of the tap in the second class?
consider NSNotificationCenterClass an option for you..