RE: What is the difference between vertical and horizontal views in iOS?

2016-02-28 Thread Lee Ann Rucker
It depends entirely on how you want to lay out your UI. Do you want [a] [b] [c] or [a] [b] [c] ? From: cocoa-dev-bounces+lrucker=vmware@lists.apple.com [cocoa-dev-bounces+lrucker=vmware@lists.apple.com] on behalf of nicholasacosta...@gmail.com [n

windowDidLoad getting called twice?

2016-02-28 Thread Dave
Hi, the winddowDidLoad method of my Window Controller is getting called twice. Is this expected behaviour? The window is the NIB has no views setup in the window ContentView, I add them after the window NIB has loaded. I’m guessing the second call is when I add subviews to the Content View…..

Re: windowDidLoad getting called twice?

2016-02-28 Thread Keary Suska
> On Feb 28, 2016, at 8:10 AM, Dave wrote: > > the winddowDidLoad method of my Window Controller is getting called twice. Is > this expected behaviour? The window is the NIB has no views setup in the > window ContentView, I add them after the window NIB has loaded. I’m guessing > the second c

Re: windowDidLoad getting called twice?

2016-02-28 Thread Dave
> On 28 Feb 2016, at 17:55, Keary Suska wrote: > > >> On Feb 28, 2016, at 8:10 AM, Dave wrote: >> >> the winddowDidLoad method of my Window Controller is getting called twice. >> Is this expected behaviour? The window is the NIB has no views setup in the >> window ContentView, I add them af

Re: windowDidLoad getting called twice?

2016-02-28 Thread Dave
Hi, I found the problem, it was in the Class above the one where I as looking, very confusing as the debugger is a bit glitchy in this area and wouldn’t let me Step Into/Out of properly….. Thanks for the help, All the Best Dave ___ Cocoa-dev mailin

Re: Triggering UITableView's -didSelectRowAtIndexPath: delegate callback

2016-02-28 Thread Luke Hiesterman
It is a general design pattern of all of UIKit - not just UITableView - that delegate callbacks for user actions are not triggered when those same actions are done programmatically. If you’re going to file a bug, I suggest filing it on the entire UIKit design pattern. Luke On Feb 27, 2016, at

Re: Triggering UITableView's -didSelectRowAtIndexPath: delegate callback

2016-02-28 Thread Jens Alfke
>> On Feb 27, 2016, at 4:27 PM, Keary Suska > > >> wrote: >> >> This results in a much more reliable and extensible decoupling since no >> other object should know those internal signaling me