iOS,如何绘制文本的动态长度?
图片为:http://www.flickr.com/photos/71607441@N07/ 6641626163/
背景是一个UIImageView,蓝色部分我想显示为“标题” 图像。 我使用了UILabel,但是文本的长度是动态的。可以是一行,也可以是两行,最多两行。如果文本长度超过两行,则会被截断。
蓝色部分看起来像“Microsoft Word 中的突出显示”,但它不是“iOS UILabel.text 中的突出显示”
有人可以帮助我吗?
The picture is: http://www.flickr.com/photos/71607441@N07/6641626163/
The background is a UIImageView, and the blue part I want to show as "title" of the image.
I used UILabel, but the length of the text is dynamic. It can be one line or two line, at most two line. If the text is longer than two lines, it will be truncated.
The blue part looks like "highlight in Microsoft Word", but it is not "highlight in iOS UILabel.text"
Is there anyone can help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个代码:----
Try this code :----
您可以使用以下方法找到标题所需的像素大小:
还有:
然后您可以使用这些尺寸(size.width,size.height)来设置 UILabel 的框架。
希望这有帮助。 :)
You can find the size in pixels required for your title using:
there's also:
You could then use these dimensions (size.width, size.height) to set the frame of your UILabel.
Hope this helps. :)