Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
248 views

NSPopUpButtonCell with hierarchical menu in NSTableView

I have an NSTableView of which one column contains NSPopUpButtonCells. This column is assigned to an IBOutlet. My application's controller class creates a menu in it's init and assigns it to the ...
2
votes
2answers
446 views

NSPopUpButtonCell inside custom NSCell does not change selection when item is selected from menu

I have an NSPopUpButtonCell inside a custom NSCell and I'm using - (BOOL)startTrackingAt:(NSPoint)startPoint inView:(NSView *)controlView to produce the pop up menu when it's clicked. I have also ...
1
vote
0answers
18 views

Retaining the selected value of a NSPopupCell in an NSTableView

I have a class with an NSString *question, NSMutableArray *possibleAnswers and int selectedAnswerIndex . I have a NSArrayController *questions to look after it. I want to display the array in a table ...
1
vote
2answers
1k views

Using NSPopUpButtonCell with NSTableView

Hello I am trying to use a NSPopUpButtonCell inside an NSTableView. Basically when you select an item in the pop up I want it displayed in the table view column/row. When an item in the popup cell is ...
1
vote
2answers
859 views

How do I make an NSPopupButton that has a menu with images AND text?

I have a list of applications and I'd like to make an NSPopupButton that shows a menu of application names with their icon to the left of each item. I've been able to bind the NSPopupButton to my ...
1
vote
1answer
323 views

NSPopupButton, updates depending on another NSPopupButton

I wish to make a city/country selector using 2 NSPopupButtons. One popup button will contain the first part e.g. UK, and the second one will contain the second part e.g. London So the whole ...
1
vote
1answer
269 views

How do I manually highlight an NSPopUpButtonCell when drawing it (draw it using white instead of black)?

I've got a custom cell composed out of several cells, one of which is an NSPopUpButtonCell. When drawing my custom cell highlighted, I want to cause all the sub-cells to highlight as well (typically ...
1
vote
1answer
311 views

NSPopUpButtonCell inside custom cell does not pop up when clicked

I've created a custom subclass of NSCell with an NSImageCell, some NSTextFieldCells, and an NSPopUpButtonCell. I'm initializing the pop up cell using: myPopUpCell = [[NSPopUpButtonCell alloc] ...
0
votes
0answers
5 views

NSPopUpButtonCell does not return current selection

I am using an NSPopUpButtonCell in an NSTableView. The popup button has a binding to an NSArray property offered by the ApplicationDelegate. When I select a menu item of the popup button I expect to ...
0
votes
1answer
29 views

Reusing NSArrayController in multiple places

I have a simple NSArrayController hooked up to one of my coreData models. I can easily show all the items in a NSTableView without problem, however, if I try to bind a NSTableColumn containing a ...
0
votes
1answer
29 views

What are all the things you can bind to in a NSTableColumn of NSPopupButtonCell?

There are quite a few things you can bind to in a NSTableColumn filled with NSPopupButtonCell, I tried looking around for explanations but couldn't seem to find any. What are each of the binding ...
0
votes
0answers
49 views

Proper way to populate NSPopUpButtonCell using NSTableViewDataSource

Lets say a Person has many Cars and they have a favorite Car. I currently populate the menu of the NSPopUpButtonCell duration the objectValueForTableColumn method. I cannot seem to find in the docs ...
0
votes
0answers
77 views

NSPopUpButtonCell not changing selected value

I have seen a couple posts with similar problems to mine but nothing that's the same. I have an NSTableView with a column that has an NSPopUpButtonCell. I am binding it via an NSArrayController and ...
0
votes
1answer
147 views

NSTableView with Dropdown Menu and having Image inside Menu

Yes, Is it possible to have a) A table having two column ( Should be easy) b) One of Cell should have image and that should be selectable from Drop - down menu By googling what i came to know it ...
0
votes
1answer
162 views

Problem with NSPopupButtonCell bindings

I'm trying to achieve something similar to the Apple Master-Detail pop-up cell example but the bindings don't seem to be working for me. My app allows users to build up a stageplay; so I have a table ...
0
votes
0answers
451 views

How to populate a tableview column of popup button cells for an array controller

In trying to make a wine cellar management program as a personal project I have run into the following situation that I can't seem to be able to resolve. Let's say I have an Entity called Wine and ...
0
votes
1answer
155 views

NSPopUpButton revert to initial state

I register for notification NSPopUpButtonWillPopUpNotification in order to change the pop up menu before it is shown. The new pop up menu consist of running Application list with respected icons. When ...
0
votes
1answer
122 views

Directly accessing the NSPopupButtonCell of an NSPopupButton (Cocoa OSX)

I know this is not normally recommended but I really need to access the NSPopupButtonCell of NSPopupButton. Is there a way to do this?
0
votes
1answer
201 views

Dynamically populated NSPopUpButtonCell menu in an NSOutlineView

I’m working with an NSOutlineView which has two columns. My dataSource supplies the outline view with a tree of items of a custom class which represents file types (that is, you initialise it with a ...
0
votes
1answer
351 views

Populating an NSPopUpButtonCell with string values

I am trying to populate a NSPopUpButtonCell with a list of strings. In -(init), I populate an NSArray with the values I want in the PopUp Button. How do I connect this to the NSArrayController I ...
0
votes
2answers
164 views

Programatically instantiating a NSPopUpButtonCell in Cocoa OSX

I have an openGL GUI interface and I need to have a popup menu that will be called when this a certain button is pressed in my openGL display. I want to display a menu similar to the one that pops up ...
0
votes
1answer
178 views

How to use NSDateFormatter with NSPopUpButton

I have an NSPopUpButton's content bound to an Array Controller of "Meeting" entities and it's content value bound to the same array controller, but to the "date" model key path. Everything works fine. ...
0
votes
1answer
325 views

Filtering entries from a Core Data entity that appear in an NSPopUpButton list

I'm familiar with how to feed data from one Core Data entity into an NSPopUpButton item so that it can be selected for another. Bindings like so: For the values themselves: -> ...
0
votes
1answer
183 views

How do I force an NSPopUpButtonCell to redisplay itself?

I'm creating a custom subclass of NSPopUpButton and NSPopUpButtonCell to display a lone icon on top of the button instead of the usual text. To do this I'm overriding - ...