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