• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Preventing highlight of RowSelection in NSTableView
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Preventing highlight of RowSelection in NSTableView


  • Subject: Re: Preventing highlight of RowSelection in NSTableView
  • From: Corbin Dunn <email@hidden>
  • Date: Fri, 27 Mar 2009 11:40:42 -0700


On Mar 27, 2009, at 10:53 AM, Jerry Krinock wrote:


On 2009 Mar 27, at 04:40, Sourabh Sahu wrote:

How can we prevent the highlight feature , when we select row in NSTableView.
I also want to shouldSelectRow return YES.

I believe this will do what you want:

If you're building for Leopard only, subclass NSTableView so that this method is a no-op:

- (void)highlightSelectionInClipRect:(NSRect)clipRect {
}

This should work on tiger too. You also should subclass your cells and make sure they don't draw any highlighting by overriding this and returning nil:


- (NSColor *)highlightColorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;

There is no need to override the private methods; people frequently make that wrong assumption. Granted, the whole process could be made better if there was an easy option to do this on NSTableView.

corbin


_______________________________________________

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


References: 
 >Preventing highlight of RowSelection in NSTableView (From: Sourabh Sahu <email@hidden>)
 >Re: Preventing highlight of RowSelection in NSTableView (From: Jerry Krinock <email@hidden>)

  • Prev by Date: Re: clarification regarding properties
  • Next by Date: Re: clarification regarding properties
  • Previous by thread: Re: Preventing highlight of RowSelection in NSTableView
  • Next by thread: Confused about superclass initializers
  • Index(es):
    • Date
    • Thread