如何在NSButton子类中添加按钮标题中的文本?
答案 0 :(得分:4)
以下是我认为可行的方法:
- (void) drawRect:(NSRect)aRect {
// other drawing commands
// ...
// other drawing commands
NSDictionary *att = nil;
NSMutableParagraphStyle *style =
[[NSParagraphStyle defaultParagraphStyle] mutableCopy];
[style setLineBreakMode:NSLineBreakByWordWrapping];
[style setAlignment:NSCenterTextAlignment];
att = [[NSDictionary alloc] initWithObjectsAndKeys:
style, NSParagraphStyleAttributeName,
[NSColor whiteColor],
NSForegroundColorAttributeName, nil];
[style release];
[self.title drawInRect:self.bounds withAttributes:att];
[att release];
}
基于iPhone上的一些Objective-C知识并查看
http://www.cocoadev.com/index.pl?DrawingABoundedString
您可能会或可能不习惯网站示例使用静态变量。
你可能会收集我不是。我得到的印象是当前的图形上下文隐含在调用中。
您可能希望根据按钮状态改变文本位置/颜色。
修改
编辑代码以修复内存泄漏。
答案 1 :(得分:3)
您继承NSButtonCell
,并覆盖draw
和NSButtonCell
可用的各种NSCell
方法中的一种或多种。