Re: Rounded rect overlap in collection view
Re: Rounded rect overlap in collection view
- Subject: Re: Rounded rect overlap in collection view
- From: Kyle Sluder <email@hidden>
- Date: Sat, 31 Oct 2009 13:54:18 -0700
On Oct 31, 2009, at 1:10 PM, PCWiz <email@hidden> wrote:
- (void)drawRect:(NSRect)dirtyRect
{
[[NSColor whiteColor] set];
NSBezierPath *path = [NSBezierPath
bezierPathWithRoundedRect:dirtyRect xRadius:6.0 yRadius:6.0];
You're rounding the wrong rect here. You want the whole view frame,
not the dirty rect (whatever the drawing machinery has decided is the
smallest rect you need to draw).
--Kyle Sluder
_______________________________________________
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