gpt4 book ai didi

objective-c - 修复UILabel的边框

转载 作者:行者123 更新时间:2023-12-01 17:58:29 25 4
gpt4 key购买 nike

我正在向 UILabel 发送短信在 UItableViewCell 内(标签文本来自 webData,因此大小不同)。

我想给我的标签一个边框,它应该适合文本的宽度和高度。我已经创建了一个,但看起来不太好。
帮助我改进我的代码。

**还有什么办法可以得到圆角的边框? **

嘿,我在边框内收到这样的文字,而且角落不是那么圆润:

enter image description here

UILabel *cmntBoxlbl = [[UILabel alloc]initWithFrame:CGRectMake(58, 23, 250, 60)];
cmntBoxlbl.font=[UIFont fontWithName:@"Arial" size:12];
cmntBoxlbl.layer.borderColor = [UIColor darkGrayColor].CGColor;
cmntBoxlbl.layer.borderWidth = 1.0;
NSString *text = [NSString stringWithFormat:@"%@%@%@",@" ",[[self.DtlArray objectAtIndex:indexPath.row] objectForKey:@"comment"],@" "];
cmntBoxlbl.text = text;



cmntBoxlbl.textAlignment = UITextAlignmentCenter;
cmntBoxlbl.lineBreakMode = UILineBreakModeWordWrap;
[cmntBoxlbl setTextColor:[UIColor darkGrayColor]];

CGSize expectedLabelSize = [text sizeWithFont:cmntBoxlbl.font
constrainedToSize:cmntBoxlbl.frame.size
lineBreakMode:UILineBreakModeWordWrap];

CGRect newFrame = cmntBoxlbl.frame;
newFrame.size.height = expectedLabelSize.height;
cmntBoxlbl.frame = newFrame;
cmntBoxlbl.numberOfLines = 0;
[cmntBoxlbl sizeToFit];
[cell addSubview:cmntBoxlbl];

最佳答案

*还有什么办法可以得到圆角的边框?? *

#import <QuartzCore/QuartzCore.h>
label.layer.borderWidth = 3;
label.layer.borderColor = [[UIColor blackColor] CGColor];
label.layer.cornerRadius = 5;

关于objective-c - 修复UILabel的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13489875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com