I am using NSAttributed NSString in my NSMenuItem, but it's Font is changed as compare to default font, I wants to use default font for Attributed string.
Can any one explain, how to find or fetch the default Font for NSMenuItems.
Right now I am using this :
NSDictionary *attributes = @{
NSFontAttributeName: [NSFont fontWithName:@"Helvetica" size:14],
NSForegroundColorAttributeName: [NSColor blackColor],
NSParagraphStyleAttributeName:paragraphStyle
};
Thanks