DrawRectメソッドを使用してテキストを描画していますが、このテキストを右に揃える方法がわかりません。
私はInterfaceBuilderでアライメントを指定できることを知っているので、それが可能であることを知っています。自分でそれを理解できないようです。
この時点でのヘルプは非常に役立ちます。
本当にありがとう!
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[NSFont fontWithName:@"AvenirNext-UltraLight" size:12], NSFontAttributeName, [NSColor redColor], NSForegroundColorAttributeName, nil];
NSAttributedString * newEmail = [[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%d", newUnreadEmail] attributes:attributes];
[newEmail drawAtPoint:NSMakePoint(140, 600)];