Skip to content

Instantly share code, notes, and snippets.

@TomLiu
Created June 17, 2012 11:41
Show Gist options
  • Save TomLiu/2944298 to your computer and use it in GitHub Desktop.
Save TomLiu/2944298 to your computer and use it in GitHub Desktop.
NSFont *font = [NSFontsystemFontOfSize:14.0];
NSShadow *textShadow = [[NSShadowalloc] init];
[textShadow setShadowColor:[NSColorcolor whiteColor]];
[textShadow setShadowOffset:CGSizeMake(0, -1.0)];
NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObjects:[NSArrayarrayWithObjects:font, textShadow, nil]
forKeys:[NSArrayarrayWithObjects:NSFontAttributeName, NSShadowAttributeName, nil]];
CGSize size = [@"string" sizeWithAttributes:attrsDictionary];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment