Re: NSRulerView background color
Re: NSRulerView background color
- Subject: Re: NSRulerView background color
- From: "Alan Smith" <email@hidden>
- Date: Wed, 2 May 2007 12:16:24 -0400
Hello Lorenzo,
It just so happens NSRulerView has the following method:
- (void)drawBackgroundInRect:(NSRect)rect;
It should suffice very nicely. Don't call super with this though, that
will mess it up. The below snippet should work fine.
- (void)drawBackgroundInRect:(NSRect)rect
{
[[NSColor colorWithCalibratedWhite: 0.85 alpha: 1.0] set];
[NSBezierPath fillRect: rect];
}
Have fun!
Peace, Alan
--
// Quotes from yours truly -------------------------
"You don't forget, you just don't remember."
"Maturity resides in the mind."
"Silence is the Universe's greatest gift."
"When the World realizes that religion really is unnecessary, then it
shall evolve."
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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