Tagged Questions
The nssegmentedcontrol tag has no wiki summary.
2
votes
1answer
246 views
NSSegmented Control Not Selecting
I have an NSSegmentedControl with the textured rounded style, and with the selection mode set to 'any'. The problem is that it is treating it like select none. When I switch the style to capsule, it ...
2
votes
2answers
354 views
How to center NSSegmentedControl
I've added an NSSegmentedControl to a pane on an horizontal split view on a normal window. I thought that adjusting the springs would make the segmented control centre itself automatically, but it ...
1
vote
1answer
436 views
iOS-style on/off toggle button for NSButton?
Looking for a MacOS equivalent of the iOS on/off toggle button seen here:
Is using an NSSegmentedControl the best option here?
0
votes
0answers
58 views
Strange drawing behavior of NSSegmentedControl, when superview is drawn
I've got a problem with the NSSegmentedControl.
I have a custom view where I draw a gradient with a shadow.
The drawing is ok, but when I place a NSSegmentedControl inside it then something strange ...
0
votes
1answer
81 views
From a NSSegmentedControl to a label
I'm new to Mac Programming, but i'm having some ideas for an application.
My question is: i have a NSSegmentedControl with 2 cells and i wanted to, if the cell number 1 is selected, write something on ...
0
votes
1answer
111 views
Saving title of NSSegmentedControl in User defaults
Thanks for the help:
I manually set the title of a segController segment from a textField input like this:
NSString *labelString = [textField stringValue];
(textField.stringValue = labelString);
...
0
votes
2answers
299 views
How to properly set an NSSegmentedControl enabled
I'd like to have my NSSegmentedControl with a segment selected when enabled and with no segment selected while disabled (the kind of behavior that the view NSSegmentedControl in iTunes has).
Here ...
0
votes
0answers
257 views
Programmatically defining NSSegmentedCell
I am a little stumped as to how to instruct a programmatically created NSSegmentedControl to use a subclass instance of an NSSegmentedCell.
If I want to use a subclasses NSSegmentedCell on an ...
0
votes
2answers
195 views
Using NSSegmentedControl with CoreData
I have a Core Data app that works to add or remove one of a Client's many Appointments with buttons bound in IB to my appointments ArrayController. The appointments content is derived from whichever ...
0
votes
3answers
320 views
NSSegmentedControl -selectedSegment always returns 0
I have an NSSegmentedControl with two segments set to "Select None" mode in Interface Builder. No matter what I try, I can't get -selectedSegment to return anything but 0, even though segment 0 is ...