gpt4 book ai didi

ios - 标签下划线不显示

转载 作者:行者123 更新时间:2023-11-29 03:24:13 26 4
gpt4 key购买 nike

我想给标签加下划线。为此,我使用了下面的代码。我正在使用自定义字体:

headingLbl.font=[UIFont fontWithName:GZFont size:20.0f];
NSMutableAttributedString *gpsSearch = [[NSMutableAttributedString alloc] initWithString:@"GPS Search"];
[gpsSearch addAttribute:(NSString*)kCTUnderlineStyleAttributeName
value:[NSNumber numberWithInt:kCTUnderlineStyleSingle]
range:(NSRange){0,[gpsSearch length]}];
self.headingLbl.attributedText = gpsSearch;
self.headingLbl.textColor = [UIColor blackColor];

最佳答案

使用下面的代码。这对我有用。

NSMutableAttributedString *gpsSearch = [[NSMutableAttributedString alloc] initWithString:@"GPS Search"];
[gpsSearch addAttribute:NSUnderlineStyleAttributeName
value:[NSNumber numberWithInt:NSUnderlineStyleSingle]
range:(NSRange){0,[gpsSearch length]}];

如果不起作用,那么问题可能出在您的自定义字体上

关于ios - 标签下划线不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20677537/

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