gpt4 book ai didi

ios - 如何在 SwiftUI 中为文本中的子字符串加下划线?

转载 作者:行者123 更新时间:2023-12-01 21:46:11 30 4
gpt4 key购买 nike

有没有办法在线下划线 Text 中的特定子字符串在 Swift UI 中查看?

// Code bellow will underline the ENTIRE string 😢
// Any way to underline on a specific substring?
Text("You must be invited by an....")
.underline()

这是我正在尝试构建的 UI:

最佳答案

Text(..)意见有+组合文本的运算符。还没有研究这个魔法是如何工作的,但它确实做得很好。

 Text("Regular text... ")
+ Text("underlined text!")
.underline()

还有第二种方法可以使用 underlined()字符串函数:
 Text("Regular text... " + "undelined text!".underlined())

超酷!

关于ios - 如何在 SwiftUI 中为文本中的子字符串加下划线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62181305/

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