Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm searching for an elegant way to detect a right-click/ctrl-click on the header of an NSTableView.

When the right click occurs, I want to display an contextual menu.

- (NSMenu *)menuForEvent:(NSEvent *)

detects only right clicks in the table - not in the header of the table.

thanks for your help.

share|improve this question

2 Answers

up vote 7 down vote accepted

Get the NSTableHeaderView from the NSTableView and set it's menu.

[[myTableView headerView] setMenu:aMenu];
share|improve this answer
works perfect :) thank you – tubtub Oct 3 '10 at 16:10
2  
If you select the header in Interface Builder, you can also drag a connection to a menu in your NIB/XIB. – Dov Jan 11 '11 at 0:17

Sometimes a picture explains a 1000 words.

  1. You do not need to subclass you table view.
  2. On any tableView you can select the TableView and connect the menu outlet to a menu. enter image description here

  3. Now you can wire the selector of the menu (on the right) to your code just like a button.

  4. To figure out what row in the table was clicked use

[yourTableView clickedRow]

Done. Like a boss.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.