I have an application that has a table of various internet resources and 
information on them. What I would like to be able to do is:

for (netResource *resource in anArrayOfResources) {
        [resource updateInfo];
        [resultsTable reloadData];
}

But it seems that the table refuses to redraw until after everything has been 
updated. So when I do this process, I get the spinning cursor for a few second 
(looks like it hung) and then the table updates. I'd prefer the table to update 
as information comes in. Note that I'm not using any bindings in this. 

I tried spinning off the table update into a new NSOperationQueue and that 
didn't help so I'm assuming spinning the resource update to another queue also 
wouldn't help either. Any suggestions?

Ashley

_______________________________________________

Cocoa-dev mailing list ([email protected])

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to