微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

iOS如何动态确定UILabel的大小

我试图找出一种方法来了解UILabel基本上字符串和字体大小的大小,以了解如何定义CGRect维度.

在此我知道了:

UILabel *myLabel = [[UILabel alloc] init];
myLabel.font = [UIFont fontWithName:@"BentonSansComp-Medium" size:50.0];
myLabel.text = @"This is a string example"

问题是我没有可用字符串列表,但需要将标签居中,字符串不应该是剁(使用上面的例子:“这是一个str ……”).你们中的任何人都知道如何根据字符串和字体大小确定UILabel的大小?

我真的很感谢你的帮助.

解决方法

只是用

UILabel *myLabel = [[UILabel alloc] init];
 myLabel.font = [UIFont fontWithName:@"BentonSansComp-Medium" size:50.0];
 myLabel.text = @"This is a string example" 
 [myLabel sizetoFit]; //it will resize the label to just the text is set
 CGRectMake size = myLabel.frame; // u will get the frame of the label once is resized
 float height = size.size.height;  //to get the height of the label
 float width = size.size.width;  //to get the width of the label

希望能帮助到你

确保改变文本的时间你调用[myLabel sizetoFit];方法

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐