iOS,如何绘制文本的动态长度?

发布于 2024-12-24 22:51:52 字数 339 浏览 1 评论 0原文

图片为: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

始终不够爱げ你 2024-12-31 22:51:52

试试这个代码:----

        CGSize maximumSize = CGSizeMake(320, 30);

UILabel *newsLabel = [[UILabel alloc] init];
                    newsLabel.textColor = [UIColor whiteColor];
                    newsLabel.font = [UIFont boldSystemFontOfSize:11];
                    newsLabel.backgroundColor = [UIColor clearColor];
                    newsLabel.lineBreakMode = UILineBreakModeWordWrap;
                    newsLabel.numberOfLines = 0;
                    lineBreakMode:newsLabel.lineBreakMode];
                    CGSize dateStringSize = [@"Text Input" sizeWithFont:newsLabel.font 
                                                                       constrainedToSize:maximumSize 
                                                                           lineBreakMode:newsLabel.lineBreakMode];
                    CGRect dateFrame = CGRectMake(5, 5, 320, dateStringSize.height); //breath can be any desired float value


                    newsLabel.text = @"Text Input";
                    newsLabel.textAlignment = UITextAlignmentCenter; 
                   newsLabel.frame = dateFrame;

Try this code :----

        CGSize maximumSize = CGSizeMake(320, 30);

UILabel *newsLabel = [[UILabel alloc] init];
                    newsLabel.textColor = [UIColor whiteColor];
                    newsLabel.font = [UIFont boldSystemFontOfSize:11];
                    newsLabel.backgroundColor = [UIColor clearColor];
                    newsLabel.lineBreakMode = UILineBreakModeWordWrap;
                    newsLabel.numberOfLines = 0;
                    lineBreakMode:newsLabel.lineBreakMode];
                    CGSize dateStringSize = [@"Text Input" sizeWithFont:newsLabel.font 
                                                                       constrainedToSize:maximumSize 
                                                                           lineBreakMode:newsLabel.lineBreakMode];
                    CGRect dateFrame = CGRectMake(5, 5, 320, dateStringSize.height); //breath can be any desired float value


                    newsLabel.text = @"Text Input";
                    newsLabel.textAlignment = UITextAlignmentCenter; 
                   newsLabel.frame = dateFrame;
老子叫无熙 2024-12-31 22:51:52

您可以使用以下方法找到标题所需的像素大小:

CGSize size = [UILabel.text sizeWithFont:yourFont];

还有:

CGSize size = [UILabel.text sizeWithFont:yourFont lineBreakMode: yourLineBreakMode];

然后您可以使用这些尺寸(size.width,size.height)来设置 UILabel 的框架。

希望这有帮助。 :)

You can find the size in pixels required for your title using:

CGSize size = [UILabel.text sizeWithFont:yourFont];

there's also:

CGSize size = [UILabel.text sizeWithFont:yourFont lineBreakMode: yourLineBreakMode];

You could then use these dimensions (size.width, size.height) to set the frame of your UILabel.

Hope this helps. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文