带有 TextField 和第一响应者的自定义 TableViewCell
我有一个包含 TextField 的自定义 TableView 单元格,我希望它在显示视图后立即成为第一响应者,但 [textcell.textfield comeFirstResponder] 不起作用。 我知道这是因为它是另一个类中的自定义单元格,我什至在那里尝试过但它不起作用。 有人知道如何实现这一点吗?
谢谢...
I have a custom TableView cell that contains a TextField and I want it to become the first responder as soon as the view is shown but [textcell.textfield becomeFirstResponder] does not work. I know it's because it's a custom cell in another class and I even tried it there and it didn't work. Anyone know how to pull this off?
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我有类似的设置,becomeFirstResponder 似乎工作正常。
我的自定义单元格:
控制器类中的委托方法: justAddedItem。
当用户单击按钮向表中添加新行时,将设置
I have a similar setup and becomeFirstResponder seems to work fine.
My custom cell:
And the delegate method from the controller class:
justAddedItem is set when the user clicks the button to add a new row to the table.