UITextField
为了在显示键盘时显示带有按钮的工具栏,我进行了子类化。
UITextField
子类:
- (void)methodName
{
//Do stuff
}
当用户按下按钮并methodName
在UITextField
.
我希望在当前 ViewController 中也触发相同的方法,以添加仅与当前 ViewController 相关的更具体的代码ViewController
methodName
我考虑过获得对topviewcontroller 的引用并从子类内部触发我的方法,UITextField
但感觉不对。
执行上述操作的正确方法是什么?