如何将背景图像设置为 NSButton ?
[_myButton setImage:[NSImage imageNamed:@"foo.png"]];
这只会更改按钮中的图像图标,但没有将背景图像设置为的选项UIButton
。
如何将背景图像设置为 NSButton ?
[_myButton setImage:[NSImage imageNamed:@"foo.png"]];
这只会更改按钮中的图像图标,但没有将背景图像设置为的选项UIButton
。
[_myButton setImage:[NSImage imageNamed:@"foo.png"]];
[_myButton setBordered:NO];
[_myButton sizeToFit];
试试这样: -
NSString* img = [[NSBundle mainBundle] pathForResource:@"Your Image" ofType:@"png"];
NSURL* url = [NSURL fileURLWithPath:img ];
NSImage *image = [[NSImage alloc] initWithContentsOfURL: url];
[yourButton setImage: image] ;
好的,这就是我所追求的:http: //osdir.com/ml/cocoa-dev/2010-06/msg00539.html
设置图像(按名称)。将“位置”设置为仅图标,无文本(位置按钮数组左起第二个选项),并取消选中“有边框”。