注意:我已阅读this question on a similar topic,但那是两年前和Objective-C。
我有val y = Years.yearsBetween(
LocalDate.parse("1988-Jul-21", DateTimeFormat.forPattern("yyyy-MMM-dd")),
LocalDate.parse("2016-Dec-18", DateTimeFormat.forPattern("yyyy-MMM-dd")))
,其中用户输入了一些文字。在我的代码中的某个时刻,我想允许NSSecureTextField
显示用户在触发NSSecureTextField
之前输入的确切文本。
以下示例代码:
NSButton
实施这样的方法@IBOutlet var secureText: NSSecureTextField! // secure text field, with text
@IBAction func switchSecureDisplay(sender: NSButton) {
// here's where I would like to switch secure display to normal plaintext display.
// unfortunately, no such method exists
secureText.displayPlainText()
}
是否可行?如果没有,是否有可能的替代解决方法?