Re: defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread Jeff Johnson
On Jul 25, 2008, at 5:33 PM, Kyle Sluder wrote: I *still* can't find mention of @executable_path in the official documentation, despite its criticality for certain functionality. Really? http://www.google.com/search?hl=en&q=site% 3Adeveloper.apple.com+%40executable_path&btnG=Search turns up

Re: defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread Adam R. Maxwell
On Friday, July 25, 2008, at 03:33PM, "Kyle Sluder" <[EMAIL PROTECTED]> wrote: >On Fri, Jul 25, 2008 at 5:28 PM, Adam R. Maxwell <[EMAIL PROTECTED]> wrote: >> I don't think this is an abuse of bundles, even though it's may not be that >> common anymore. If you look at >> http://www.stone.com/T

Re: defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread Kyle Sluder
On Fri, Jul 25, 2008 at 5:28 PM, Adam R. Maxwell <[EMAIL PROTECTED]> wrote: > I don't think this is an abuse of bundles, even though it's may not be that > common anymore. If you look at > http://www.stone.com/The_Cocoa_Files/Thanks_A_Bundle_.html or the source for > CVL [1], I think you'll fin

Re: defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread Adam R. Maxwell
On Friday, July 25, 2008, at 12:40PM, "Kyle Sluder" <[EMAIL PROTECTED]> wrote: >On Fri, Jul 25, 2008 at 2:19 PM, julius <[EMAIL PROTECTED]> wrote: >> What I have seen on the web seemed to indicate that bundles are a really >> good way of splitting up code development etc. >> I like keeping code c

Re: defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread Kyle Sluder
On Fri, Jul 25, 2008 at 2:19 PM, julius <[EMAIL PROTECTED]> wrote: > What I have seen on the web seemed to indicate that bundles are a really > good way of splitting up code development etc. > I like keeping code compartamentalised and bundles looked like a good way to > do it. This is not what bu

Re: defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread julius
Kyle Hi On 25 Jul 2008, at 18:49, Kyle Sluder wrote: On Fri, Jul 25, 2008 at 1:38 PM, julius <[EMAIL PROTECTED]> wrote: I want to defer loading a window/panel plus controller and related code by using bundles. Do you really not want to include the code inside your executable? Bundles are t

Re: defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread Kyle Sluder
On Fri, Jul 25, 2008 at 1:38 PM, julius <[EMAIL PROTECTED]> wrote: > I want to defer loading a window/panel plus controller and related code by > using bundles. Do you really not want to include the code inside your executable? Bundles are typically used by the application developer when the exist

defer loading window using bundles in XCode 3 Leopard

2008-07-25 Thread julius
Hi, I want to defer loading a window/panel plus controller and related code by using bundles. I've looked at the Bundle programming guide http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFBundles/Tasks/creating.html#/ /apple_ref/doc/uid/20001122 and the Code Loading Program