A couple NSRunLoop questions

2009-05-04 Thread Miles
1) I have a timer on a run loop. Every so often I invalidate the timer which as I understand it should remove the run loop as well. At a later time I start a new run loop (by calling the same method as before), then invalidate that timer after a while, and repeat. When I pause the debugger after

Re: A couple NSRunLoop questions

2009-05-04 Thread Chris Suter
Hi Miles, On Tue, May 5, 2009 at 11:54 AM, Miles vardpeng...@gmail.com wrote: 1) I have a timer on a run loop. Every so often I invalidate the timer which as I understand it should remove the run loop as well. No, invalidating a timer just removes it as a source from the run loop. At a later

Re: A couple NSRunLoop questions

2009-05-04 Thread Ken Thomases
On May 4, 2009, at 8:54 PM, Miles wrote: 1) I have a timer on a run loop. Every so often I invalidate the timer which as I understand it should remove the run loop as well. At a later time I start a new run loop (by calling the same method as before), then invalidate that timer after a