How to get stringValue from a NSTextView

1.4k Views Asked by At

I am creating a OSX Cocoa Application using Swift. I am trying to get the input from a NSTextView to my paste board.

@IBOutlet var issues: NSTextView!

@IBAction func button(_ sender: Any) {
    let stringvalue = "Issue: \(issues.StringValue)"
    let pasteboard = NSPasteboard.general()
    pasteboard.declareTypes([NSPasteboardTypeString], owner: nil)               
    pasteboard.setString(stringvalue, forType: NSPasteboardTypeString)
}

The only error that I am getting is "Value of type 'NSTextView' has no member 'stringValue'.

I don't want to use NSTextField since that only lets me use one line.

1

There are 1 best solutions below

6
On BEST ANSWER

NSTextView is a subclass of the NSText class. So you need to get your string using NSText string property:

if let string = issues.string {
    let stringvalue = "Issue: \(string)"
    print(stringvalue)
}