Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Jeremy Matthews
On Apr 5, 2010, at 6:18 PM, Kyle Sluder wrote: > On Mon, Apr 5, 2010 at 3:12 PM, Jeremy Matthews > wrote: >> Oh dear? > > Yeah. It's a pretty heavy topic. Your use of a for loop inside a modal > runloop to perform a lengthy operation leads me to believe you'll be > starting at the ground level

Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Kyle Sluder
On Mon, Apr 5, 2010 at 3:12 PM, Jeremy Matthews wrote: > Oh dear? Yeah. It's a pretty heavy topic. Your use of a for loop inside a modal runloop to perform a lengthy operation leads me to believe you'll be starting at the ground level. Please read through the Threading Programming Guide. It prob

Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Jeremy Matthews
Oh dear? Sent from my iPhone On Apr 5, 2010, at 4:47 PM, Kyle Sluder wrote: On Mon, Apr 5, 2010 at 10:15 AM, Jeremy Matthews > wrote: for (mmm=0;mmm<150;mmm++) { [progressIndicator displayIfNeeded]; [progressIndicator setDoubleValue:mmm];

Re: Modal Window with dynamic nstextfield

2010-04-05 Thread Kyle Sluder
On Mon, Apr 5, 2010 at 10:15 AM, Jeremy Matthews wrote: >        for (mmm=0;mmm<150;mmm++) >        { >                [progressIndicator displayIfNeeded]; >                [progressIndicator setDoubleValue:mmm]; >                NSString *temp222 = [NSString stringWithFormat:@"%d",mmm]; >        

Modal Window with dynamic nstextfield

2010-04-05 Thread Jeremy Matthews
I have a modal window with code to update both a progress bar and corresponding text...the progress bar gets updated just fine but the textfield never does (except if I re-run the method the last string I pushed to the textfield from the previous run does appear).My understanding was that if you