macOS上的SwiftUI可选文本

时间:2019-08-26 22:06:26

标签: macos swiftui

如何在swiftUI中显示一个可以选择的文本?例如在macOS上的终端应用程序中?

Text(“ This is some text”)显示文本,但无法选择。

我是Mac上GUI开发的新手。我应该使用其他View吗?

1 个答案:

答案 0 :(得分:1)

尝试使用Button来自动换行或直接使用Button。

Button("This is some text") {
   print("do something here")
}