gpt4 book ai didi

ios - iOS-5 中 UIButton 标题中带下划线的多行

转载 作者:可可西里 更新时间:2023-11-01 05:54:34 25 4
gpt4 key购买 nike

我想在 iOS 中创建带下划线的按​​钮链接。 enter image description here

我已经用过UIUnderlineButton

所以它给了我以下输出。

enter image description here

请帮我实现像第一张图片一样的带下划线的按​​钮。

最佳答案

对于 iOS6 及更高版本,这应该可以解决问题,使用 attributedString:

NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] initWithString:@"yourTextButton"];
[attrStr addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:NSMakeRange(0, [attrStr length])];
[yourButton setAttributedTitle:attrStr forState:UIControlStateNormal];
[[yourButton titleLabel] setNumberOfLines:0];//Multiple Lines

关于ios - iOS-5 中 UIButton 标题中带下划线的多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21626635/

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