Skip to content

Instantly share code, notes, and snippets.

@TomLiu
Created February 26, 2012 12:05
Show Gist options
  • Save TomLiu/1916335 to your computer and use it in GitHub Desktop.
Save TomLiu/1916335 to your computer and use it in GitHub Desktop.
Cocoa Label
NSTextField *label = [[NSTextField alloc] initWithFrame:CGRectMake(0, 0, 320, 25)];
[label setEditable:NO];
[label setBordered:NO];
[label setFont:[NSFont systemFontOfSize:17.0]];
[label setBackgroundColor:[NSColor clearColor]];
[label setTextColor:[NSColor blackColor];
[label.cell setLineBreakMode:NSLineBreakByTruncatingTail];
[label setAutoresizingMask:NSViewMaxXMargin|NSViewMaxYMargin|NSViewWidthSizable];
[label setStringValue:@"this is a label"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment