Skip to content

Instantly share code, notes, and snippets.

@TomLiu
Created June 17, 2012 11:44
Show Gist options
  • Save TomLiu/2944306 to your computer and use it in GitHub Desktop.
Save TomLiu/2944306 to your computer and use it in GitHub Desktop.
CGFloat width = 100.0;
NSDictionary *attrDic = [NSDictionary dictionaryWithObject:[NSFont systemFontOfSize:14.0] forKey:NSFontAttributeName];
NSSize limit = NSMakeSize(width, (unsigned int)-1);
CGRect frame = [@"this is the test string" boundingRectWithSize:limit options:(NSStringDrawingDisableScreenFontSubstitution | NSStringDrawingUsesLineFragmentOrigin) attributes:attrDic];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment