Skip to content

Instantly share code, notes, and snippets.

@Teino1978-Corp
Created November 7, 2015 08:07
Show Gist options
  • Select an option

  • Save Teino1978-Corp/2fd5fa704816025415f9 to your computer and use it in GitHub Desktop.

Select an option

Save Teino1978-Corp/2fd5fa704816025415f9 to your computer and use it in GitHub Desktop.
Get CGSize from NSString
+ (CGSize)getNSStringSize:(NSString *)string withFont:(UIFont *)font{
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:font,NSFontAttributeName, nil];
return [[[NSAttributedString alloc] initWithString:string attributes:attributes] size];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment