I have a Class (File's Owner) that has an instance of a QTMovieViewer subclass (movieViewer) and a QTMovie (movie). QTMovieViewer is an IBOutlet, QTMovie is not.
Within IB I set up a binding for movieViewer using KVC to movie. How can I access movie from movieViewer in code?
I have thought about adding an Object to IB to represent the QTMovie, but the problem is this is not an IBOutlet and is created in code from File's Owner.
Thank you.