Re: Window resizing make weird things happen
Re: Window resizing make weird things happen
- Subject: Re: Window resizing make weird things happen
- From: Jonathan Hendry <email@hidden>
- Date: Thu, 23 Aug 2001 19:20:32 -0500
On Wednesday, August 15, 2001, at 12:49 , email@hidden wrote:
In my application there is just one window with a table view, several
text fields, and a few buttons. This, however, seems to be too much to
handle.
When there is a lot of stuff in the table view and the window is
resized, for a second, the entire window turns white. The entire
application seems to be very unresponsive.
It sounds like your app is doing a huge amount of processing while
drawing the
cells of the tableview.
How quickly does the tableview scroll?
If that's slow too, I'd look into how much you're doing in the
datasource methods
called by the tableview. When the tableview asks what to put in a cell,
you
shouldn't be doing much processing.
- Jon