Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: NSRulerView background color



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:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden

This email sent to email@hidden
References: 
 >NSRulerView background color (From: Lorenzo <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.