Skip to content

Instantly share code, notes, and snippets.

@TomLiu
Created February 6, 2012 15:16
Show Gist options
  • Save TomLiu/1752623 to your computer and use it in GitHub Desktop.
Save TomLiu/1752623 to your computer and use it in GitHub Desktop.
[newTaskButton setImage:[NSImage imageNamed:@"top-addtask-ori"]];
[newTaskButton setAlternateImage:[NSImage imageNamed:@"top-addtask-sel"]];
[newTaskButton setFrame:CGRectMake(0, 0, 40, 40)];
[newTaskButton setBordered:NO];
//下面两个属性设置解决了出现白框的问题
[newTaskButton setBezelStyle:NSRegularSquareBezelStyle];
[newTaskButton setButtonType:NSMomentaryChangeButton];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment