Re: Okay I have those pieces… now where's the glue?

2008-05-27 Thread Ken Thomases
There are several approaches to solving the communication issues you're facing, including delegation, notifications, the responder chain, etc. Rather than summarizing them (poorly) myself, I'll just point you to Apple's discussion of them: http://developer.apple.com/documentation/Cocoa/Co

Re: Okay I have those pieces… now where's the glue?

2008-05-27 Thread Vincent E.
On May 27, 2008, at 10:25 PM, Wim Lewis wrote: Have you looked at the examples that get installed with the developer tools? In particular, under the "AppKit" subdirectory there's the source to TextEdit and a simple drawing application named Sketch, both of which are pretty good examples of

Re: Okay I have those pieces… now where's the glue?

2008-05-27 Thread Mark
I see a lot of blah blah and 2 fully distinct questions on your post - plus a completelly meaningfull subject text. Where's that link about how to ask questions... Ps: Is there any generic(!) open source app that you would recommend me to study to learn more about how to structure an app at

Re: Okay I have those pieces… now where's the glue?

2008-05-27 Thread Wim Lewis
On May 27, 2008, at 1:04 PM, Satsumac wrote: It's not that much about strictly technical questions like "how do I get this to do that?", but rather questions like "okay, I can think of several ways to do this, it's just that I have no clue which path to take?" Books like Hillegass or the

Re: Okay I have those pieces… now where's the glue?

2008-05-27 Thread Jens Alfke
On 27 May '08, at 1:04 PM, Satsumac wrote: How do I allow controller A to send commands to controller B and vice versa? If controller A initialized controller B, then A knew about B, but what about the other way round? I seem to remember this exact question coming up a few days ago... If