Hi All,
In the MVC design pattern, which class file (appdelegate, viewcontroller etc) is best suited for these IBOutlet/IBAction scenarios?:
- IBAction (e.g. Show Menu) to be triggered by UIButton press event?
- IBOutlet to manipulate a UI elements properties (e.g. Hide Menu)?
A poke around Apple's sample code seems to show IBOutlets existing in the AppDelegate and/or the ViewController, and IBActions being in the ViewController only.
Any inputs on which way best aligns with the "right way"/MVC design patterns?
Thanks!