Trouble with NSTextField in Swift using xcode 6.1 (OSX)

2.2k Views Asked by At

I started Swift but not Objective C. Can someone teach me how to get and set the NSTextField in Swift using xcode 6.1 under OSX?

1

There are 1 best solutions below

1
On BEST ANSWER

You get and set the value of an NSTextField with the stringValue property. For instance, if you have this @IBOutlet in your app:

@IBOutlet weak var textfield: NSTextField!

getting the value:

println("textfield is \(textfield.stringValue)")

setting the value:

textfield.stringValue = "this is my string"