我需要显示一个 NSTextFieldCell ,每行具有不同格式的多行。
像这样的东西:
第 1 行:标题
第 2 行:描述
我将 NSTextFieldCell 子类化,但我不知道如何继续。
有任何想法吗?
我需要显示一个 NSTextFieldCell ,每行具有不同格式的多行。
像这样的东西:
第 1 行:标题
第 2 行:描述
我将 NSTextFieldCell 子类化,但我不知道如何继续。
有任何想法吗?
首先,您不必为了实现这一点而进行子类NSTextFieldCell
化,因为作为 的子类NSCell
,NSTextFieldCell
继承了-setAttributedStringValue:
. 您提供的字符串可以表示为NSAttributedString
. 以下代码说明了如何使用普通的NSTextField
.
MDAppController.h:
@interface MDAppController : NSObject <NSApplicationDelegate> {
IBOutlet NSWindow *window;
IBOutlet NSTextField *textField;
}
@end
MDAppController.m:
@implementation MDAppController
static NSDictionary *regularAttributes = nil;
static NSDictionary *boldAttributes = nil;
static NSDictionary *italicAttributes = nil;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
if (regularAttributes == nil) {
regularAttributes = [[NSDictionary dictionaryWithObjectsAndKeys:
[NSFont systemFontOfSize:[NSFont systemFontSize]],NSFontAttributeName,
nil] retain];
boldAttributes = [[NSDictionary dictionaryWithObjectsAndKeys:
[NSFont boldSystemFontOfSize:[NSFont systemFontSize]],NSFontAttributeName,
nil] retain];
NSFont *regFont = [NSFont userFontOfSize:[NSFont systemFontSize]];
NSFontManager *fontManager = [NSFontManager sharedFontManager];
NSFont *oblique = [fontManager convertFont:regFont
toHaveTrait:NSItalicFontMask];
italicAttributes = [[NSDictionary dictionaryWithObjectsAndKeys:
oblique,NSFontAttributeName, nil] retain];
}
NSString *string = @"Line 1: Title\nLine 2: Description";
NSMutableAttributedString *rString =
[[[NSMutableAttributedString alloc] initWithString:string] autorelease];
[rString addAttributes:regularAttributes
range:[string rangeOfString:@"Line 1: "]];
[rString addAttributes:regularAttributes
range:[string rangeOfString:@"Line 2: "]];
[rString addAttributes:boldAttributes
range:[string rangeOfString:@"Title"]];
[rString addAttributes:italicAttributes
range:[string rangeOfString:@"Description"]];
[textField setAttributedStringValue:rString];
}
@end
这导致以下结果:
现在,根据您打算如何使用此文本,您可以通过几种不同的方式实现该设计。您可能想研究是否NSTextView
可能适合您而不是NSTextField
...
使用NSTextView有什么问题?