Re: Drawing Invalidation Question
Re: Drawing Invalidation Question
- Subject: Re: Drawing Invalidation Question
- From: Benjamin Dobson <email@hidden>
- Date: Sun, 1 Feb 2009 09:39:51 +0000
On 1 Feb 2009, at 05:41:49, Seth Willits wrote:
When inside of -[NSView drawRect:], what's the difference between
- (void)drawRect:(NSRect)rect;
{
if ([self needsToDrawRect:someRect])
....
}
... and ...
- (void)drawRect:(NSRect)rect;
{
if (NSIntersectsRect(rect, someRect))
....
}
... ?
Apart from anything else, the first makes it clear what your intent
is, which would be useful when you return to that bit of code later.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden