Re: [Solved] Crash in addSubview: when compiled with SDK > 10.9

2016-11-03 Thread Graham Cox
> On 4 Nov 2016, at 2:00 AM, Konidaris Christos wrote: > > The problem was that my NIBs also contained NSViewController objects for some > of their subviews. Changing these controllers to plain NSObjects eliminated > the crashes. > > Thank you for pointing me to the correct direction. > Tha

Re: [Solved] Crash in addSubview: when compiled with SDK > 10.9

2016-11-03 Thread Konidaris Christos
> On 2 Nov 2016, at 19:24, Quincey Morris > wrote: > > On Nov 2, 2016, at 10:00 , Konidaris Christos wrote: >> >> Our application crashes inside AppKit when compiled with any SDK > 10.9. The >> crash happens at the following point in the program: >> >> activityPaneController = [[ESC_Activit

Re: Crash in addSubview: when compiled with SDK > 10.9

2016-11-02 Thread Konidaris Christos
> On 2 Nov 2016, at 19:30, Quincey Morris > wrote: > > On Nov 2, 2016, at 10:00 , Konidaris Christos wrote: > >> Our application crashes inside AppKit when compiled with any SDK > 10.9. The >> crash happens at the following point in the program: >> >> activityPaneController = [[ESC_Activity

Re: Crash in addSubview: when compiled with SDK > 10.9

2016-11-02 Thread Quincey Morris
On Nov 2, 2016, at 10:00 , Konidaris Christos wrote: > Our application crashes inside AppKit when compiled with any SDK > 10.9. The > crash happens at the following point in the program: > > activityPaneController = [[ESC_ActivityPaneController alloc] initWithNibName: > @“ESC_ActivitySideBox"

Re: Crash in addSubview: when compiled with SDK > 10.9

2016-11-02 Thread Konidaris Christos
Zombie objects and Malloc Scribble are checked in Diagnostics. – Chris > On 2 Nov 2016, at 19:05, Jens Alfke wrote: > > Have you run with Zombies enabled? Or with the address sanitizer? > > —Jens ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.

Re: Crash in addSubview: when compiled with SDK > 10.9

2016-11-02 Thread Jens Alfke
Have you run with Zombies enabled? Or with the address sanitizer? —Jens ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.appl

Crash in addSubview: when compiled with SDK > 10.9

2016-11-02 Thread Konidaris Christos
Hi All, Our application crashes inside AppKit when compiled with any SDK > 10.9. The crash happens at the following point in the program: activityPaneController = [[ESC_ActivityPaneController alloc] initWithNibName: @“ESC_ActivitySideBox" bundle: nil]; [superV addSubview: activityPaneController