Core Audio Memory Leak

2008-07-22 Thread Jiva DeVoe
code almost directly from the AudioQueueTools example code... why would Instuments say it leaks there? -- Jiva DeVoe http://www.random-ideas.net PowerCard - Intuitive Project Management for Mac OS X ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Re: NSDictionaryController and inserting new objects.

2008-03-31 Thread Jiva DeVoe
do the NS*Controller classes provide some other cool features that would be difficult for my mere mortal development skills to implement? On Mar 31, 2008, at 6:02 AM, Kyle Sluder wrote: On Mon, Mar 31, 2008 at 3:24 AM, Jiva DeVoe <[EMAIL PROTECTED]> wrote: What am I missing here? Some

NSDictionaryController and inserting new objects.

2008-03-31 Thread Jiva DeVoe
er and wire things up directly? What am I missing here? Someone enlighten me? I kinda feel this way about a lot of the controllers provided in IB. They're *almost* good enough for most of the things I want to do.. but never *exactly* what I need. -- Jiva DeVoe http://www.random-ideas.ne

Re: How to run progress bar in a separate thread

2008-03-10 Thread Jiva DeVoe
Make sure if you're doing this that you're not actually updating the GUI code from your other thread because much of cocoa is not thread safe. Instead, use the performSelectorOnMainThread... Method to do your update to the progress bar in the main thread. -- Jiva DeVoe http://

Re: GNUStep, OpenStep, NextStep, Cocoa port?

2008-03-08 Thread Jiva DeVoe
Hoping we're not too off topic for the list, if so, someone please say so. That said... I tried Cocotron, and I really liked it in theory. Yes, the apps it made looked more native than the ones from GNUstep. However, as soon as I wanted to get beyond making a text editor (Yes, specifical

Re: GNUStep, OpenStep, NextStep, Cocoa port?

2008-03-08 Thread Jiva DeVoe
because it will help them work on any platform. -- Jiva DeVoe http://www.random-ideas.net On Mar 8, 2008, at 12:20 AM, "William Zumwalt" <[EMAIL PROTECTED]> wrote: Anyone have any experience trying to port a Cocoa XCode app to linux? Are the GnuStep or OpenStep libs comp

Re: Charting API?

2008-02-29 Thread Jiva DeVoe
I'll add my recommendation for SM2DGraphView as well. The docs are good and the code works well. -- Jiva DeVoe http://www.random-ideas.net On Feb 27, 2008, at 4:56 PM, "Kyle Sluder" <[EMAIL PROTECTED] > wrote: On Wed, Feb 27, 2008 at 2:14 PM, Chris Schmitt <[EMAI

Re: Custom NSView and tooltips...

2008-02-24 Thread Jiva DeVoe
Nevermind! I figured it out! I discovered that I can pass any old object to the addToolTipRect method, and that it will be asked for the tooltip for a given point! Problem solved. On Feb 25, 2008, at 12:17 AM, Jiva DeVoe wrote: Greetings, I have a custom NSView, which draws a pie

Custom NSView and tooltips...

2008-02-24 Thread Jiva DeVoe
Greetings, I have a custom NSView, which draws a pie chart. I want to implement a tooltip for each slice of the pie to indicate information about that slice for the user. The slices are not rectangular, they are triangular. Thus, I can't just use addToolTipRect:owner:userData. So I had