Tagged Questions
The nspopupbutton tag has no wiki summary.
4
votes
1answer
298 views
NSPopUpButton Active Image
I want to create an NSPopUpButton with a custom active image. I have two images, one for inactive, and another for active. In interface builder I set the Image and Alt. Image for the NSPopUpButton. ...
2
votes
1answer
46 views
Changing visibility of NSPopUpButton's items based on keypress
I've got an application here that needs to read in a bunch of data from an external file and display it as a NSPopUpButton in a Cocoa user interface. The catch here is that the data that is being read ...
1
vote
0answers
55 views
Default selection for NSPopUpButton that chooses Core Data objects
I have a Core Data project where all of the data is grouped into years. I wanted to let the user select which year they want to see/enter data for by a popup button instead of a table because it ...
1
vote
2answers
222 views
Using a Popup button in Master-Detail
My Document based, Core Data application (using bindings in IB) has two entities, Employee (with an employeeName attribute) and TimeSheet (with timeDescription and entryDate attributes). Employee has ...
1
vote
2answers
726 views
How can I create a NSPopUpButton that uses a fixed Image, and no arrows?
I'm trying to get NSPopUpButton to render like a standard NSButton with only an image set, but not having any luck.
Much like the "+" button in Mail.app:
I assume they did this with ...
1
vote
1answer
443 views
NSPopUpButton: events from menu tracking?
Is it possible to detect actions that tell my controller when the user is mousing (or otherwise perusing) the items in an NSPopUpButton? I only seem to be notified on a new selection and I'd like to ...
1
vote
2answers
861 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 ...
0
votes
1answer
13 views
NSPopUpButton set it to the first item
I have a clear button in my Mac OS app.
When the button is pressed, it clears all the values of the form and resets the NSPopUpButton to the first item.
The question is how do I change the ...
0
votes
1answer
42 views
How to save the state of an NSPopUpButton? - Cocoa
I have been searching everywhere for this and not been able to find it and its really bugging me. I can't figure out how to save the current state of an NSPopUpButton, so if a user changes it, the app ...
0
votes
1answer
30 views
Custom view in NSMenuItem disables the NSPopUpButton selection
I want to customize an an NSPopUpButton so I have implemented an CustomMenuItemView which right now only has the following code (for testing purposes):
- (void)drawRect:(NSRect)dirtyRect
{
...
0
votes
1answer
21 views
Why is NSPopupButton item disappearing?
I have an NSPopupButton whose selection index is bound to a property in an NSWindowController subclass. In IB, the button starts out with a couple items. The property's value comes from NSUserDefaults ...
0
votes
0answers
42 views
How to control the size of an NSPopupButton dynamically based on a condition?
I have an NSPopupButton. The menu item titles I have, consist of two components: an Id and a title(string) separated by a "-"
eg:
12345 - MyTitle.
The length of the ID can be varying. What i want to ...
0
votes
0answers
65 views
NSPopUpButton Binding User Defaults
Ok, I know there's a ton of stuff on this, but it's all spread out and I seem to be to dense to make sense of it all. My requirements are very simple, and hopefully the solution will be as well. I've ...
0
votes
1answer
102 views
Binding NSPopUpButton to NSArray
I'm a little lost with bindings on NSPopUpButton. I have a custom class that holds an array of items that I'd like to display in a pop up. These items are subclasses of NSManagedObjects and they are ...
0
votes
0answers
90 views
NSPopupButton with ValueTransform: only selected item is transformed
I have an app with an NSPopupButton allowing to specify an option defined as an integer in the entity attributes. For example: "1,2,3" where "2" is the default value. In Interface builder, I've put an ...
0
votes
1answer
135 views
NSPopUpButton, NSComboBox similar menu
I'm trying to create a menu with a drop down menu with a custom background for every cell.
First i tried to adapt NSPopUpButton but i couldn't find a way to change the cells background image. Using ...
0
votes
0answers
97 views
NSMenuItem actions overriding NSPopUpButton actions
I've noticed an interesting behavior and I wonder if it's something I'm doing wrong. I have an NSPopUpButton with several NSMenuItems on an NSMenu on the NSPopUpButton. When I click the popup button ...
0
votes
2answers
75 views
How do I change the short display form of an NSMenuItem in an NSPopUpButton?
I have an NSPopUpButton with a long menu of items, some of which are quite wide - wider than the button's closed width. Some of the menu item titles are like so:
"Start of a really long name not that ...
0
votes
2answers
84 views
How can I limit the “pop-up” size of NSPopUpButton?
I have a large list - over 200 items - managed by an NSPopUpButton. When clicked, the list extends all the way to the top or bottom of the screen and beyond.
How can I limit the open size, so that at ...
0
votes
0answers
76 views
NSArrayController subclass setFetchLimit in fetchWithRequest
I have a NSPopupButton that is bound to a CoreData backed NSArrayController.
I subclassed the NSArrayController to set a fetchLimit and SortDescriptor.
The problem is the following:
The FetchLimit ...
0
votes
1answer
133 views
Changing Font Size of Japanese (Unicode) characters
I have a NSPopUpButton which contains either English or Japanese Strings read from a plist file according to the System's Language. Now when the Language is English I am able to change the font size ...
0
votes
0answers
187 views
Returning an NSArray to NSPopUpButtons Content Values
I need to programmatically return an NSArray of objects or strings from an NSManagedObject class custom accessor to the content values or content objects bindings of an NSPopUpButton.
I have an ...
0
votes
1answer
388 views
Adding “Not Selected” Option To Bound NSPopupButton
I have an NSPopupButton that is bound to a core data backed NSArrayController. The selection of the NSPopupButton is also bound to a core data backed item. Bindings pretty much as follows:
NSArray ...
0
votes
1answer
180 views
NSTableView content based on a selection of another NSArrayController
The issue
I have a popup button (NSPopUpButton) that is bound to an NSArrayController. This array controller handles parent objects that each have a collection of child objects. I have an NSTableView ...
0
votes
0answers
344 views
Display icons in PopUpMenuButton - without embedding images
I want to display icons in my popUpMenuButton, without Embedding the images, as embedding images uses alot of memory, and I want to avoid that.
Is there some how I can use an itemRenderer for ...
0
votes
0answers
163 views
NSPopUpButton issues on Mac OS 10.4
I have an NSPopUpButton which is misbehaving on 10.4. I'm developing on 10.6, and it looks fine. I'm not doing anything special with the button. The correct behaviour of the button is to change ...
0
votes
1answer
195 views
NSPopUpButton placeholder value?
Notice in Xcode's symbols list (the NSPopUpButton directly above the editor, to the right of the recently edited documents), it shows <No selected symbol> when you're out of scope of any symbols ...
0
votes
1answer
125 views
NSCollectionView as NSPopUpButton “drawer”
I would like to have something similar to the "List mode" of the stacks in the Dock.
But it should have the behavior of NSPopUpButton, in terms of displaying the selected object still, when the ...
0
votes
1answer
157 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
486 views
NSArrayController selection
I want to achieve the following:
There is a list of persons (name, birthday, photo)
I want to select a person name in the NSPopUpButton and show
other details below.
How can I do it using bindings ...
0
votes
1answer
570 views
Setting a default selection for an NSPopupButton?
Is it possible to set a default selection on an NSPopupButton? I have one that allows the user to select the type of server they want to set up, but since an NSPopupButton always shows the first item, ...
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
2answers
457 views
A popup button with a static image (Cocoa OSX)
I am trying to make a popup button that always displays a + as its image and when you click on it, a context menu pops up that will allow you to decide what type of object you want to add. Is there ...
0
votes
1answer
144 views
popUpButton is setEnabled:YES but doesn't allow click
my popUpButton is in a window with a group of popUpButtons. If I try to click the 2nd of 4 vertically aligned buttons then the popdown menu will not appear. If I select the 3rd or 4th then the 2nd ...
0
votes
3answers
896 views
How to add multiple menu items with the same title to NSPopUpButton(NSMenu)?
As docs say it's impossible to add two menu items to NSPopUpButton if they both have the same title. I was trying to add menu items to [popupButton menu], but with no luck. I was also trying to create ...
0
votes
2answers
624 views
Getting NSPopUpButton from NSMenuItem
My application uses the -validateMenuItem: method for validating menu items.
But I need to validate different menu items depending on what popup's there in.
I was hoping for a way to get the tag of ...
0
votes
1answer
186 views
Can a NSFormatter be used with a NSPopUpButton?
This question is similar to this one: http://stackoverflow.com/questions/821363/how-do-i-use-an-nsformatter-subclass-with-an-nspopupbutton
As mentioned in that question, it seems like the 'formatter' ...
0
votes
1answer
476 views
NSFormatter used with a NSPopUpButton
I have a NSPopUpButton whose content values are bound to an NSArray of NSNumbers. The NSPopUpButton correctly displays the array of numbers in it's popup-menu. However, when I change the selected ...
0
votes
1answer
108 views
Using Array Controllers to restrict the view in one popup depending on the selection in another. Not core data based
I am working on an app that is not core data based - the data feed is a series of web services.
Two arrays are created from the data feed. The first holds season data, each array object being an ...
0
votes
2answers
421 views
Programmatically controlling a Cocoa Button on OSX (making it invisible and pressed)
I am trying to interface with a cocoa popup menu from an OpenGL button. The actual button needs to be in OpenGL and I cannot stick an actual Cocoa button in its place but when this button is pressed ...