Created
February 15, 2016 01:33
-
-
Save zyqhi/e67488bd15934d757476 to your computer and use it in GitHub Desktop.
获取一段文本在视图上的长度
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| UIFont *const font = [UIFont systemFontOfSize:15]; | |
| NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:toastText attributes:@{NSFontAttributeName:font}]; | |
| // sz为文本长度 | |
| CGSize sz = [string size]; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
toastText为文本内容