1
NSFont *font
= [NSFont
systemFontOfSize:[NSFont
smallSystemFontSize]];
2
// NSFont *font = [NSFont fontWithName:@"Helvetica" size:8];
3
// NSFont *font = [NSFont boldSystemFontOfSize:[NSFont systemFontSizeForControlSize: NSMiniControlSize]];
4
NSFont *font
= [NSFont
systemFontOfSize:8];
5
// NSDictionary *titleAttributes = [NSDictionary dictionaryWithObject:[NSColor blueColor] forKey:NSForegroundColorAttributeName];
6
7
NSDictionary *titleAttributes
= [[NSDictionary
alloc] initWithObjectsAndKeys:
8
font, NSFontAttributeName,
9
[NSColor blackColor],
NSForegroundColorAttributeName,
nil];
10
NSDictionary *titleAttributes2
= [[NSDictionary
alloc] initWithObjectsAndKeys:
11
font, NSFontAttributeName,
12
[NSColor greenColor],
NSForegroundColorAttributeName,
nil];
13
14
NSMutableAttributedString *extraString
= [[NSMutableAttributedString
alloc] initWithString:@"CPU:\nMEM:"];
15
[extraString setAttributes:titleAttributes
range:NSMakeRange(0,3)];
16
[extraString setAttributes:titleAttributes2
range:NSMakeRange(4,5)];
NSFont常用字体
最新推荐文章于 2024-07-21 20:57:53 发布