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
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
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];
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];
>
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