Re: Dumb question about view controllers

2015-05-04 Thread Uli Kusterer
On 02 May 2015, at 20:18, William Squires wsqui...@satx.rr.com wrote: This is sort of in response to the thread, Parent/child view controllers: when shall we use it?. Since, in both iOS and Mac OS X, a control IS a view, why don't controls have their own dedicated view controllers? i.e. If

Re: Dumb question about view controllers

2015-05-02 Thread Quincey Morris
On May 2, 2015, at 11:18 , William Squires wsqui...@satx.rr.com wrote: Since, in both iOS and Mac OS X, a control IS a view, why don't controls have their own dedicated view controllers? There’s a philosophy about containment, referring not the parent/subview relationship, but the geometric

Dumb question about view controllers

2015-05-02 Thread William Squires
This is sort of in response to the thread, Parent/child view controllers: when shall we use it?. Since, in both iOS and Mac OS X, a control IS a view, why don't controls have their own dedicated view controllers? i.e. If I make a new single-view iOS project, and I put a UILabel in the main

Re: Dumb question about view controllers

2015-05-02 Thread Jens Alfke
On May 2, 2015, at 11:18 AM, William Squires wsqui...@satx.rr.com wrote: why doesn't Xcode generate a template view controller (code) for the UILabel (that is, UILabelViewController), just like there's a view controller for the main view (usu. ViewController.h and ViewController.m, or -