Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
343 views

NSButton subclass that responds to right clicks

I have an NSButton subclass that I would like to make work with right mouse button clicks. Just overloading -rightMouseDown: won't cut it, as I would like the same kind of behaviour as for regular ...
3
votes
2answers
570 views

NSView drawRect interfering with subviews?

I have an nsview and i use draw rect to draw an image for background. It also has 3 subviews nsbuttons. The problem is, whenever the mouse is down on a button, the other buttons disappear. But when I ...
2
votes
2answers
49 views

How do I prevent an NSButton from registering presses while disabled?

Newbie Warning I have a simple but vexing problem trying to disable an NSButton. Here is sample code to illustrate the problem: - (IBAction)taskTriggeredByNSButtonPress:(id)sender { ...
2
votes
1answer
75 views

How to get the preferred size of NSButton?

I have a custom view for an NSMenuItem that contains an NSButton. The title of the button is determined at runtime and I'd like to adjust the frame of the button so that the content (button title) ...
2
votes
1answer
43 views

Make NSButton open fonts panel

I was wondering how to go about making a button open up the fonts panel in Mac OS X using Cocoa, I have an NSTextView in my application and want the fonts dialogue to display when the user clicks the ...
2
votes
1answer
301 views

how to get state of radio button and whether it is selected?

I have a group of radio buttons (matrix) and it has 4 choices. How can I find out what the selection is (programmatically) and get the BOOL of it?
2
votes
2answers
303 views

NSButtonCell vs NSButton

I've been reading through the Apple documentation about NSButtons and cells and I really can't seem to understand the distinction between the two. Adding to this complexity, it looks like both of them ...
2
votes
1answer
169 views

Add a close button to NSTabviewitem

I have a application with a tab view when the user clicks in the menu for example "client data" I generate a tab programmaticaly. Now I want to subclass the tab view to add a close button for each ...
2
votes
1answer
111 views

How to scale axes independently at runtime on an NSButton

In Interface Builder, you can select how you want a button's image to be scaled, choosing either Axes Independent, Proportionally Down, etc. for the "Scaling" drop-down. How can I access or change ...
2
votes
2answers
848 views

NSButton inside NSTableView Programatically?

How can I set a column of checkboxes inside a NSTableView? So far, this is what I have done, but it just puts the int 1 in the column, not the checkboxes: -(id)tableView:(NSTableView *)aTableView ...
2
votes
1answer
312 views

NSButton Inside NSTextField

I'm trying to create a NSTextField with a button on its right side (similar to a NSSearchView), but I can't figure out how to have the NSTextField's text scroll without going under the NSButton. Here ...
2
votes
1answer
591 views

NSShadow with a NSButton subclass

Here's My Code: - (void)drawRect:(NSRect)dirtyRect { // Drawing code here. // Create the Gradient NSGradient *fillGradient = nil; if (mouseIsDown) fillGradient = [[NSGradient ...
1
vote
1answer
19 views

NSTextField add cancel button

Using iOS and a UISearchBar you can have a nice little cancel button setup within the text field similar to this: (Note I found the image on another post and the 'argh!' is not relevant in my ...
1
vote
3answers
44 views

Objective C - Can I use NSSet to setEnabled:NO to a set of NSButtons?

I have written a timer application that passes a speechTime from an IBAction and counts down to 0. There are five distinct speechTimes, and a toggler button that will stop the speech time countdown. ...
1
vote
1answer
438 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?
1
vote
0answers
73 views

Adding a NSButton as a subview over IKImageFlowView

I am using IKImageFlowView in my application and need to add a nsbutton over it, I am using the code as given below, In my .h file IBOutlet id browserView; in nib added a custom view and changed ...
1
vote
0answers
81 views

How to apply toolbar-like styling to round textured buttons in a custom view

How do you apply toolbar-like styling to round textured buttons in a custom view? Here's some more background: Apple's human interface guidelines say to use controls with round textured styling in ...
1
vote
1answer
64 views

Disable Sound on NSButton

In my xib I have defined that some of my NSButtons have a sound file that should play whenever the button is clicked. I'd like to offer my users the option to disable sound effects. Is there any way ...
1
vote
1answer
86 views

Change direction of disclosure triangle

How can I change the direction of the disclosure triangle programmatically? In Interface Builder it's possible by changing the value "Control -> Layout" from "Left to Right" or "Right to Left". I ...
1
vote
2answers
22 views

Unexpected Delay in Controller

I have a method that gets the IBOutlet of another class by initializing an instance to the other class and then runs code that uses the references to the IBOutlets to set a memory address in another ...
1
vote
1answer
174 views

NSButton- border shown on click

In a Mac application, i'm using an NSButton with Gradient style ,no border and a custom image as its background.The problem is, on click of the button, a rectangular white area around the button is ...
1
vote
2answers
162 views

How Can I Change NSButton Color?

I have been using the setBackgroundColor method to change the NSButton colour, but my question is, are there any other methods I could use to change the colour of an NSButton other than that?
1
vote
2answers
162 views

How to use an IBAction button outside it's scope

I have three IBActions, each linked with it's own button like so: #import "Controller.h" #import "Application.h" @implementation Controller - (IBAction)deal:(id)sender { NSButton *deal = ...
1
vote
1answer
302 views

NSButton - set text color in disabled mode

For some reason, when my button is disabled, the text color turns white. I want it to stay black - how can i do that?
1
vote
1answer
73 views

NSButton over QTCaptureView

Is there any way to put NSButton object over QTCaptureView? I have done following, In interface builder, added a QTCaptureView, Added a button on top of QTCaptureView and it's allowing to do ...
1
vote
1answer
133 views

dropdown button in cocoa

I am trying to create a button showing an NSMenu like the action button of the finder (the one with teh gear icon) but do not know how to start. Do you have any idea to achieve this? Thanks and ...
1
vote
0answers
482 views

Core Graphics help with Optimizing Custom NSButtonCell Code

I am trying to recreate this image in code: Normal - Zoomed - I am not asking for an implementation here — I write my own code. I would usually implement this custom button as an image, but I ...
1
vote
1answer
296 views

NSButton's images lose transparency on selection

I have edited some NSButton's in my Mac OS X application and set a custom image to them. The images are in png format with transparency. When I select a button, the background of the image goes white. ...
1
vote
3answers
306 views

Cocoa forControlEvents:WHATGOESHERE

In Cocoa/Objective-C if I have created a button programmatically, what do I put in for my control event? [btnMakeChar addTarget:self action:@selector(makeChar:) forControlEvents:WHAT GOES HERE?]; ...
1
vote
1answer
405 views

How to setKeyEquivalent to Enter/Return key on NSButton?

I've tried [myButton setKeyEquivalent:@"\n"] but that didn't work. I feel like there should be some predefined constant for it that I'm just missing. Thanks.
1
vote
1answer
340 views

how to code NSButton to look just like image

Using code (not the Interface builder) I need to create an NSButton that looks like an image. Specifically I want to use NSImageNameStopProgressFreestandingTemplate and I need it not to look like ...
1
vote
3answers
1k views

How to show a keyboard via press a NSButton?

I only know few ways to show a keyboard on iOS touch textfield,search bar,textview..... Is it can via touch a button to show keyboard ??? I wish I can use this way to set a button tittle if the ...
1
vote
1answer
568 views

NSButtonCell as Checkbox in a NSTableVIew don't get selected

I have a NSTableVIew for multi-selection purposes with two columns, the first one with a NSButtonCell as checkbox and the other one as a title. The idea is to check the items to be added afterwords ...
1
vote
1answer
387 views

Borderless NSButton turns gray when clicked

I am making a little application with three NSButtons with an image set. These buttons have no border nor background. However, when I click a button it turns into a gray rectangle. How can I fix ...
1
vote
2answers
748 views

Cocoa: change cursor when it's over an NSButton

How can I change the cursor when it's over an NSButton?
1
vote
1answer
1k views

create custom button with image in interface builder

How do I create a button with an images for normal & highlighted states in interface builder for cocoa application? I need a button like custom button in cocoa-touch and provide a graphics for ...
1
vote
1answer
223 views

want to remove a specific collectionview item with the remove button on that view

I have a collection view item and its prototype view. Within that prototype view I have a little x button. I want that button to remove the exact collection view item that it is on top of. I can ...
1
vote
1answer
709 views

How to make a Cocoa Disclosure Triangle

I have most of the code that works [self.disclosureButton setBezelStyle:NSDisclosureBezelStyle]; [self.disclosureButton setButtonType: NSPushOnPushOffButton]; [self.disclosureButton setTitle:nil]; ...
1
vote
1answer
187 views

How to set NSToggleButton to start in state 0 from Interface Builder?

How can I in Interface Builder set NSButton of type toggle with Title and Alt.Title to start with the Title (e.g. the state 0)? The moment I set the button as toggle and set the Alt.Title it displays ...
1
vote
2answers
91 views

Programatically Removing a Button from a Window in Cocoa OSX

I need to programatically remove a button from a window in Cocoa but the only method close to this was dealloc in NSObject, but this is not what I want to do. Is there a way to actually delete the ...
1
vote
1answer
234 views

Looking for a cocoa method to simulate a button press that does not have an Event as a parameter

I need to simulate a button press on my Cocoa button programatically and I am trying to do this on cocotron which unfortunately does not have the NSEvent method: ...
0
votes
1answer
19 views

Back button in NSPopover

Apple uses these rather cool looking custom (?) buttons in multi page NSPopovers: You can see them when you highlight a word and choose "Look up..." in an NSTextView. Anybody knows whether these ...
0
votes
2answers
43 views

How can i create `IBOutlet` or `IBAction` in custom class

how can i create IBOutlet or IBAction taking into account following conditions: IBAction or IBOutlet must be created inside my custom class (inherited from NSObject) NSButton instance is visible ...
0
votes
1answer
29 views

How to create resize window with multiple disclosure triangle?

I want to create a window like "Finder Get Info" window with multiple disclosure triangle. I want to resize the window dynamically. Any example which explain this behaviour? Any help would be ...
0
votes
2answers
18 views

Prefill email content with NSButton hyperlink

I was wondering how I could, or if it's even possible to, prefill an email message's content when you click an NSButton, so far I open up the default email client but I want to prefill the body of the ...
0
votes
0answers
16 views

NSButton without “click highlighting”

I've got an NSButton with an image (and no text), over a blueish background. The Style is "Square", type is "Momentary Push In", not bordered etc. When I click the button, there is a light rect ...
0
votes
1answer
23 views

Click a NSPushButton programmatically with “animation”

I just ran into a problem I already know from other programming languages/frameworks .... Whenever the user clicks a certain button on the keyboard, he triggers the same action than when a certain ...
0
votes
0answers
27 views

NSButton argument binding in view-based NSTableView

View-based NSTableView with a single column. Each 'cell' contains several NSTextFields, an NSImageView and an NSButton, all of which are bound to various attributes of the objectValue of the Table ...
0
votes
1answer
61 views

How to bind NSButton enabled state to a composed condition

This is my situation in Xcode Interface Builder: There is also an NSArrayController in entity mode which controls the content of the NSTableView. I want to enable the 'Create' button when the ...
0
votes
2answers
91 views

Custom NSButton with semi-transparent background

I'm trying to create a custom NSButton with a 50% opaque black background and white text. To do this I've subclassed NSButton and overloaded DrawRect: - (void) drawRect:(NSRect)dirtyRect { [self ...

1 2 3