Re: Rounded rect overlap in collection view
Re: Rounded rect overlap in collection view
- Subject: Re: Rounded rect overlap in collection view
- From: PCWiz <email@hidden>
- Date: Sat, 31 Oct 2009 15:17:52 -0600
I tried drawing a rect around the whole frame like so:
- (void)drawRect:(NSRect)dirtyRect
{
NSBezierPath *path = [NSBezierPath bezierPathWithRoundedRect:[self
frame] xRadius:6.0 yRadius:6.0];
[[NSColor whiteColor] set];
[path stroke];
[super drawRect:dirtyRect];
}
..and I get the same result
On 2009-10-31, at 2:54 PM, Kyle Sluder wrote:
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