Re: lastKeyViewTraversingSubviewsBeginningWithView

2010-02-22 Thread Joe Ranieri
front, and doesn't lazily create them or destroy them. So, there really are 5000+ subviews. You should take a look at the collection view's subviews to see. -- Joe Ranieri Thanks. It does seem to be the problem. In total, there are over 10,000 (6 per represented object) views being displayed

Re: lastKeyViewTraversingSubviewsBeginningWithView

2010-02-21 Thread Joe Ranieri
view's subviews to see. -- Joe Ranieri ___ 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.apple.com Help/Unsubscribe/Update

Re: Preventing system sleep

2010-02-16 Thread Joe Ranieri
probably be using IOPMAssertionCreateWithName() instead if you can require 10.5+. This gives the system a lot more information about the intent of your code and the potential ability to show some nice UI to the user. -- Joe Ranieri ___ Cocoa-dev mailing

Re: Preventing system sleep

2010-02-16 Thread Joe Ranieri
On 2/16/10 4:18 PM, Laurent Daudelin wrote: On Feb 16, 2010, at 13:13, Joe Ranieri wrote: On 2/16/10 4:10 PM, Neil Allain wrote: On Feb 16, 2010, at 2:57 PM, Laurent Daudelin wrote: I'm working on a an app that at some point might start transferring a large file to a USB device

Re: Touchscreens and control scaling

2009-06-04 Thread Joe Ranieri
, some small controls are a problem with a touch screen, but it depends on the accuracy of the touch screen and the ability of your user. -- Joe Ranieri ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

Re: Custom drawn menus?

2009-01-14 Thread Joe Ranieri
. It is possible to do using an undocumented method, but that's not on-topic for this list. -- Joe Ranieri ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators

Re: what the hell is Error (1007) creating CGSWindow?

2009-01-14 Thread Joe Ranieri
]; NSImage* image = [[NSImage alloc] initWithSize:imgSize]; You're leaking this NSImage. -- Joe Ranieri ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators

Customizing menu drawing

2008-12-03 Thread Joe Ranieri
and will break in 64-bit... Does anyone have any ideas? -- Joe Ranieri ___ 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

Re: any data on Mac OS X 10.5 install base?

2008-05-21 Thread Joe Ranieri
Is there any data on the install base? What is the minimal set of platforms and OS versions that I need to support in order to make any meaningful commercial software There's also Adium's statistics from its auto-updater: http://www.adiumx.com/sparkle/ Joe Ranieri Lead Magician, Alacatia

Re: Relaunching an application

2008-03-03 Thread Joe Ranieri
Maybe I'm missing something, but Instead of NSTask, why not use LSOpenApplication passing in (kLSLaunchDefaults | kLSLaunchNewInstance | kLSLaunchDontAddToRecents) for flags? Your main program will block until the sub program has launched. Joe Ranieri Lead Magician, Alacatia Labs