Another newbie question : I have a simple iPhone app with a model, a controller and a view class.
I want to draw a rectangle in the view using variables from the model (like the size or the position)
What is the best way to make reference inside the drawRect method code, to variables from the model instance ? (the model is instanciated from within the controller - as recommended in the MVC design pattern)
KVO ? KVC ? Binding ? Teleportation ?
Thanks for you help.