我开始使用Swift但不是Objective C.有人可以教我如何使用OSX下的xcode 6.1在Swift中获取和设置NSTextField
吗?
答案 0 :(得分:4)
您可以使用NSTextField
属性设置stringValue
的值。例如,如果您的应用中有@IBOutlet
:
@IBOutlet weak var textfield: NSTextField!
获得价值:
println("textfield is \(textfield.stringValue)")
设置值:
textfield.stringValue = "this is my string"