I'm a newbie to Cocoa and Objective-C. I'm currently working on a program that will generate a grid in a CustomView. For this, I have a control window (with all the sliders/options) and a preview window (that draws the grid). These two windows are attached to different classes: the control window to the GridPaperController class, and the preview window to the GridView class.
Let's say I change a slider on my control window. The label next to it changes with its value (which is stored as a variable in the GridPaperController class). How can I send this value to the GridView class?
Thanks for the help.