Skip to content

Instantly share code, notes, and snippets.

@arlm
Last active May 22, 2016 06:34
Show Gist options
  • Save arlm/5457aa068e0a7a89f88a07f3477a0f80 to your computer and use it in GitHub Desktop.
Save arlm/5457aa068e0a7a89f88a07f3477a0f80 to your computer and use it in GitHub Desktop.
Get StringSize since iOS7
var dictionary = new NSDictionary(UIStringAttributeKey.Font, Font.Name);
var attributes = new UIStringAttributes(dictionary);
var size = text.GetSizeUsingAttributes(attributes);
var bounds = new SizeF(width, height);
var text = new NSString(text ?? string.Empty);
var dictionary = new NSDictionary(UIStringAttributeKey.Font, font.Name);
var attributes = new UIStringAttributes(dictionary);
var options = NSStringDrawingOptions.UsesFontLeading | NSStringDrawingOptions.UsesLineFragmentOrigin;
var size = text.GetBoundingRect(bounds, options, attributes, null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment