Simple question: I am creating an iOS app and the view controller calculates some coordinates that it should pass to the view. I am using the UIView's drawRect method, so my question is how should I send data to the view? I am aware of delegates and NSNotificationCenter, but I feel like there should be a simpler way since this is a part of model-view-controller. If not, then that is OK, I was just wondering. Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
I would declare properties in UIView, and change the values from UIViewController if anything needs to be changed. |
|||||||||
|
|
User a property or a method in you UIView subclass. If your change requires a manual redraw of the view, make sure to call [self setNeedsDisplay] at some point. Delegate or NSNotificaitonCenter is definitely overkill in this case. Since the UIViewController will presumably keep a pointer to the UIView, it's much simpler to directly interact with your view. |
|||
|
|