以编程方式实例化 UITextField 委托?
我有一个 UITextField
已添加到 Interface Builder 中的视图中。我的问题是:有没有一种方法可以在 Xcode 中以编程方式设置其委托?我知道我可以通过将连接从 UITextField>Delegate
拖动到实现 textFieldShouldReturn:
的 viewController 来连接 IB 中的委托:
只是好奇,因为控件“UITextField”显然是在 IB 中实例化,而不是直接通过代码。
I have a UITextField
that has been added to my view in Interface Builder. My question is: is there a way I can programatically set its delegate from within Xcode? I know that I can connect up the delegate in IB by dragging a connection from UITextField>Delegate
to my viewController which implements textFieldShouldReturn:
Just curious as the control "UITextField" is obviously instantiated in IB and not directly through code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有 IBOutlet,只需使用:
If you've got an IBOutlet to it, just use: