问题描述
- 对UILabel中的文本进行高亮设置
-
我想要高亮处理UILabel中的文字部分。给label使用了backgroundColor 。但是执行之后,标签中的空白部分也被高亮了,很难看。有没有办法只高亮文本部分,不影响UILabel的尺寸?谢谢。
解决方案
用这段代码可以给text后面添加子视图:
CGSize size= [[label text] sizeWithFont:[UIFont systemFontOfSize:18.0]];
NSLog(@"%.1f | %.1f", size.width, size.height);
NSLog(@"%.1f | %.1f", label.frame.size.width, label.frame.size.height);
UIView *highlightView=[[UIView alloc] initWithFrame:CGRectMake(0, 0, size.width, size.height)];
[highlightView setBackgroundColor:[UIColor greenColor]];
[self.view insertSubview:highlightView belowSubview:label];
[highlightView setCenter:label.center];
And don't forget: [label setBackgroundColor:[UIColor clearColor]];
时间: 2024-10-01 10:27:06