在此我知道了:
UILabel *myLabel = [[UILabel alloc] init];myLabel.Font = [UIFont FontWithname:@"BentonSansComp-Medium" size:50.0];myLabel.text = @"This is a string example"
问题是我没有可用字符串列表,但需要将标签居中,字符串不应该是剁(使用上面的例子:“这是一个str ……”).你们中的任何人都知道如何根据字符串和字体大小确定UILabel的大小?
我真的很感谢你的帮助.
@R_419_6120@ 只是用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];方法
总结以上是内存溢出为你收集整理的iOS如何动态确定UILabel的大小全部内容,希望文章能够帮你解决iOS如何动态确定UILabel的大小所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)