从自定义输入视图中更新UITextField的文本

时间:2016-03-11 09:27:08

标签: ios swift uitextfield inputview

我正在为 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?

谢谢!

0 个答案:

没有答案