Skip to content

Instantly share code, notes, and snippets.

@zyqhi
Created February 15, 2016 01:33
Show Gist options
  • Select an option

  • Save zyqhi/e67488bd15934d757476 to your computer and use it in GitHub Desktop.

Select an option

Save zyqhi/e67488bd15934d757476 to your computer and use it in GitHub Desktop.
获取一段文本在视图上的长度
UIFont *const font = [UIFont systemFontOfSize:15];
NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:toastText attributes:@{NSFontAttributeName:font}];
// sz为文本长度
CGSize sz = [string size];
@zyqhi
Copy link
Author

zyqhi commented Feb 15, 2016

toastText为文本内容

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment