gpt4 book ai didi

swift - 使用 Swift 选择 NSTextField 中的所有文本

转载 作者:行者123 更新时间:2023-12-01 09:25:11 26 4
gpt4 key购买 nike

如何使用 Swift 以编程方式选择 NSTextField 中的所有文本?

对于 UITextField 有一个方法,如

textField.selectedTextRange = textField.textRangeFromPosition(...)

最佳答案

在操场上试试这个:

import XCPlayground
import AppKit

let view = NSView(frame: CGRect(x: 0, y: 0, width: 300, height: 300))

XCPShowView("view", view)

let txtf = NSTextField(frame: CGRect(x: 50, y: 50, width: 200, height: 50))

view.addSubview(txtf)

txtf.stringValue = "falling asleep at the keyboard..."

txtf.selectText(nil) // Ends editing and selects the entire contents of the text field

var txt = txtf.currentEditor() // returns an NSText

txt.selectedRange // --> (0,33)

命令单击 selectedRange ,然后在 NSText (它的返回类型),它将跳转到它的 Swiftened header ,在那里你可以查看它的丰富功能......

关于swift - 使用 Swift 选择 NSTextField 中的所有文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26126273/

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