我正在为 UITextField 显示自定义 inputView ,如此
let inputView = UIView()
let button = UIButton()
inputView.backgroundColor = UIColor.redColor()
inputView.addSubview(button)
let tf = UITextField()
tf.inputView = inputView
现在单击按钮时,我希望 tf (UITextField)的文本发生变化。
换句话说 - 从我的 inputView 中,如何访问父UITextField?
谢谢!