Re: Changing tabview tab order with IB 3.2.3

2010-08-28 Thread Nirias
seconds before you are able to initiate the drag. On Sat, Aug 28, 2010 at 2:46 AM, Ken Thomases wrote: > On Aug 28, 2010, at 3:31 AM, Graham Cox wrote: > > > On 27/08/2010, at 10:01 PM, Nirias wrote: > > > >> Does anyone know how to re-order tabview tabs in the current

Changing tabview tab order with IB 3.2.3

2010-08-27 Thread Nirias
In the old IB, at least at version 3.1.2, it was possible to re-order tabs in a tab view by clicking a tab and then using the left and right arrow keys move that tab in the order. But with IB 3.2.3, the arrow keys just change which tab is selected (eg the left arrow key will deselect the current t

Re: NSImage initWithContentsOfURL slowness

2009-05-04 Thread Nirias
More information: My testing wasnt thorough enough: While Firefox always loads rapidly, Safari has the same delay as cocoa, and there is a clear pattern. Two loads in 1-2 seconds, then the 3rd load takes a really long time. This pattern repeats with every 3rd load delayed, whether loading NSImag

NSImage initWithContentsOfURL slowness

2009-05-04 Thread Nirias
I am trying to grab an image from a network camera but performance is horrible.  My code is: NSLog(@"refreshImage"); url = [NSURL URLWithString:@"http://192.168.1.253/SnapshotJPEG?Resolution=640x480&Quality=Precision";]; NSLog(@"  setURL"); NSImage *image = [NSImage alloc]; NSLog(@"  allocated

How to debug GC related EXC_BAD_ACCESS

2008-11-24 Thread Nirias
I have a garbage collected application that runs (apparently) flawlessly with a debug build. But with a release build it promptly fails with an EXC_BAD_ACESS error. My guess is that somehow the GC is not seeing a clear reference to some object(s) and is releasing them too soon. Is there a recomme

Re: Getting pointer to NSWindowController

2008-10-08 Thread Nirias
That was it. Thanks. On Tue, Oct 7, 2008 at 11:41 PM, Graham Cox <[EMAIL PROTECTED]> wrote: > > On 8 Oct 2008, at 4:00 pm, Nirias wrote: > > It seems I must be doing something wrong since the NSWindow class have a >> property for NSWIndowController isnt documente

Getting pointer to NSWindowController

2008-10-07 Thread Nirias
I am very new to cocoa and am trying to understand key value coding. I have a document app wherein the NSDocument creates the NSWindowController which loads a NIB that contains a NSView inside an NSWindow. The NSWindow contains the NSView and also a couple of NSTextFields bound to numerical prope