Cocoa NSTextField值未更改

时间:2017-12-12 12:27:42

标签: swift cocoa nstextfield

我以编程方式创建了NSTextfield

func createText(point:NSPoint) {
        let txtFld = AnnotationTextField(frame: NSMakeRect(point.x, point.y, 360,40))
        txtFld.isEnabled = true
        txtFld.delegate = self
        self.contentView.addSubview(txtFld)
        txtFields.append(txtFld)

        txtFld.becomeFirstResponder()
    }

但是当我点击另一个字段或点击Enter键时,我的字符串没有保存。

enter image description here

1 个答案:

答案 0 :(得分:0)

我在draw方法中设置了stringValue。那是我的错?