如何知道多行UILabel中最后一个字符的位置

时间:2015-07-14 05:00:29

标签: ios objective-c uilabel

我希望在多行UILabel完成后呈现UIImageView。应用程序当前状态的一些示例..也就是问题:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

这可能会对您有所帮助:

myLabel.text = @"One of the earliest and most deadly complaints about Kelvin Rudd is now being leveled at Bill Shorter";
[myLabel sizeToFit]; //or use :- [myLabel sizeThatFits:CGSizeMake(width, height)];

由于这个原因,你的标签尺寸变得固定,你可以相应地添加图片。