Re: NSTableView Selection and Flicking
Re: NSTableView Selection and Flicking
- Subject: Re: NSTableView Selection and Flicking
- From: "Erik M. Buck" <email@hidden>
- Date: Tue, 28 Aug 2001 15:41:57 -0500
Try:
disableFlushWindow
- (void)disableFlushWindow
Disables the flushWindow method for the receiver. If the receiver is
buffered, disabling flushWindow prevents drawing from being automatically
flushed by NSView's display... methods from the receiver's backing store to
the screen. This permits several NSViews to be drawn before the results are
shown to the user.
Flushing should be disabled only temporarily, while the NSWindow's display
is being updated. Each disableFlushWindow message must be paired with a
subsequent enableFlushWindow message. Invocations of these methods can be
nested; flushing isn't reenabled until the last (unnested) enableFlushWindow
message is sent.