Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Julien Jalon
And you have an example: http://devworld.apple.com/mac/library/samplecode/ImageBrowserViewAppearance/index.html -- Julien On Mon, Feb 15, 2010 at 5:42 PM, Jens Alfke wrote: > > On Feb 15, 2010, at 7:18 AM, Ashley Clark wrote: > > > For objects that were saved in a NIB file -initWithFrame: is

Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Julien Jalon
SnowLeopard introduced a bunch of new public API to make customizing easier: On the view itself: - (void) setBackgroundLayer:(CALayer *) aLayer; - (void) setForegroundLayer:(CALayer *) aLayer; extern NSString * const IKImageBrowserGroupHeaderLayer; /* CALayer */ extern NSString

Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Jens Alfke
On Feb 15, 2010, at 7:18 AM, Ashley Clark wrote: > For objects that were saved in a NIB file -initWithFrame: is usually not > what's called to recreate them (there are some exceptions that I don't > remember off the top of my head). Since NIBs are essentially archives most of > the views store

Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Ashley Clark
On Feb 3, 2010, at 7:27 PM, Charles Burnstagger wrote: > I subclass IKImageBrowserView & IKImageView overriding initWithFrame: & > drawRect: and sending the same messages to super in both cases. > > I've set them as the classes for the UI objects in my IB file, and as > IBOutlets in my window's

IKImageBrowserView & IKImageView subclasses not getting called

2010-02-03 Thread Charles Burnstagger
I subclass IKImageBrowserView & IKImageView overriding initWithFrame: & drawRect: and sending the same messages to super in both cases. I've set them as the classes for the UI objects in my IB file, and as IBOutlets in my window's window controller subclass. But when I run the code, neither of