Re: Creating Custom Views in Interface Builder

2008-03-18 Thread Michael Fey
Sorry for the long delay in replaying, I wanted to make sure that what I was doing was going to work before I responded. It turns out that Jacob was the closest to the solution that I wanted (though I thank everyone for their suggestions). The one common theme in the suggestions involved

Re: Creating Custom Views in Interface Builder

2008-03-17 Thread Sean McBride
On 3/15/08 12:48 PM, Rob Keniger said: >There's a trap for young players in the docs: watch out if you are >creating a GC-only app. Classes instantiated via IB3 plugins MUST be >compliant with the traditional retain/release mechanism, you can't >create a plugin for a class that relies on Garbage C

Re: Creating Custom Views in Interface Builder

2008-03-14 Thread Rob Keniger
On 15/03/2008, at 4:46 AM, [EMAIL PROTECTED] wrote: It seems to me that you should be able to follow the QuickStart for building an InterfaceBuilder plug-in to create your custom NSView: There's a trap for young players in the docs: watch out if you are creating a GC-only app. Classes inst

Re: Creating Custom Views in Interface Builder

2008-03-14 Thread Ricky Sharp
On Mar 14, 2008, at 1:51 PM, Jeff LaMarche wrote: I wrote an article for MacTech a while back on doing this... it may be a little outdated by now since it was written when Tiger was new, but may still contain some useful info: http://www.mactech.com/articles/mactech/Vol.21/21.10/Palettes/i

Re: Creating Custom Views in Interface Builder

2008-03-14 Thread Jeff LaMarche
I wrote an article for MacTech a while back on doing this... it may be a little outdated by now since it was written when Tiger was new, but may still contain some useful info: http://www.mactech.com/articles/mactech/Vol.21/21.10/Palettes/index.html On Mar 14, 2008, at 2:46 PM, [EMAIL PROTEC

Re: Creating Custom Views in Interface Builder

2008-03-14 Thread varun
Hi Michael! It seems to me that you should be able to follow the QuickStart for building an InterfaceBuilder plug-in to create your custom NSView: http://developer.apple.com/documentation/DeveloperTools/Conceptual/IBPlugInGuide/Plug-inQuickStart/chapter_3_section_1.html#//apple_ref/doc/uid/TP4000

Re: Creating Custom Views in Interface Builder

2008-03-14 Thread Jacob Lukas
Whoops meant to hit "Reply All" On Mar 14, 2008, at 14:33, Michael Fey wrote: Hello List! I am trying to create a custom view class using Interface Builder that I can then instantiate within my code as many times as needed. In this particular case I have a control that I've created that

Creating Custom Views in Interface Builder

2008-03-14 Thread Michael Fey
Hello List! I am trying to create a custom view class using Interface Builder that I can then instantiate within my code as many times as needed. In this particular case I have a control that I've created that contains a progress bar, two text fields, two buttons, and an image view. I t