Programmatically create and position an NSButton in a macOS app?

18,900

To possition button You need to change the button's origins x and y. Look at the sample code which I wrote below and comments.

You can do it like this:

-(void)awakeFromNib {

    //Start from bottom left corner

    int x = 100; //possition x
    int y = 100; //possition y

    int width = 130;
    int height = 40; 

    NSButton *myButton = [[[NSButton alloc] initWithFrame:NSMakeRect(x, y, width, height)] autorelease];
    [[windowOutlet contentView] addSubview: myButton];
    [myButton setTitle: @"Button title!"];
    [myButton setButtonType:NSMomentaryLightButton]; //Set what type button You want
    [myButton setBezelStyle:NSRoundedBezelStyle]; //Set what style You want

    [myButton setTarget:self];
    [myButton setAction:@selector(buttonPressed)];
}

-(void)buttonPressed {
    NSLog(@"Button pressed!"); 

    //Do what You want here...  
}

** WindowOutlet is window so don't forget to IBOutlet it.

Share:
18,900
Matt Payne
Author by

Matt Payne

Updated on June 12, 2022

Comments

  • Matt Payne
    Matt Payne almost 2 years

    How do I programmatically create and position a button in a macOS Cocoa application?