Every resource that I use for this is for iOS. I can't seem to work fine for Mac OSX. Any idea how to do this to set the font size? Currently, it correctly sets the alignment of color and center. Thanks
NSMutableAttributedString *libTitle = [[NSMutableAttributedString alloc] initWithString:@"Library"]; [libTitle addAttribute:NSForegroundColorAttributeName value:[NSColor whiteColor] range:NSMakeRange(0,[@"Library" length] ) ]; [libTitle setAlignment:NSCenterTextAlignment range:NSMakeRange(0, [@"Library" length])]; [libTitle addAttribute:NSFontSizeAttribute value:[NSFont systemFontOfSize:18.0] range:NSMakeRange(0, [@"Library" length])]; [self.libbtn setAttributedTitle:libTitle];
source share