I have my first app running on iphone/ipad that uses Core Graphics and gesture recognizers (NOT OpenGL or touch events). The App, view, and controller were set up using IB. It's simply a View within a ViewController. I added CG calls to draw into a CG Context. The gestures are added to the view, but handled in the view controller. The view controller uses accessors to change variables that determine what is drawn in the view. The computation (ie model) is embedded in the view. The app works quite well, but I would like to add features, such as emailing and saving what has been drawn. (I know I'll need other graphics contexts).
Conventional wisdom tells me I need to use MVC paradigm, meaning to factor the model out of the view into its own object. So, I re-factored the code. I manually added an NSObject for the model, which nicely contains the data and needed methods. No compile errors or warnings.
Now, when the view's drawRect is triggered, I want to get an updated image from the model via the controller. At the key place where I expect the image to be returned, NULL comes back. I probably just don't have my object reference(s) correct, but I'm too confused to cut though the fog, and I'm working in a vaccum, so I am enlisting your help. Thanks for reading.
SUMMARY and QUESTION
The View Controller always has the current parameters that it can pass to the model. The model can compute a bitmapped image given those parameters. I'm pretty sure I have that much down.
My question is (phrased various different ways):
What is the best way to get the image FROM the model TO the view (via the controller :^) How should the View send a message to the view controller to initiate the request?
How can the model return the image to the controller? I assume I'd just pass a CGContextRef back through whatever chain you recommend.
About me: I am new to OOP, Objective-C, Xcode, and IB. I've watched most of the Stanford lectures several times, studied Goldstein's Dummies books, scoured Apple docs. It is hard for a noob to glean appropriate level answers from these sources. I just need more "experience". I'm so green, I'm not even sure how to refer to the view controller, other than to include "myViewController *viewController" in the view's interface definition! I have been googling and reading the answers to similar questions here on Stackoverflow. I can't beleeve I haven't found anything appropos. I hoping for a practical principle or two to serve as my guide.
Please advise.
This is similar to reference-to-model-data-in-a-view-instance-drawrect, which was not answered satifactorily.