我的 Textfield UITableViewCell 和 textfieldShouldReturn 的看法不一致
选择一个单元格
并在其中写入一些内容后,我想点击键盘上的返回/下一个按钮,然后简单地移动到下一个单元格
,这就是我正在尝试的来实现。但是在我的方法 textfieldShouldReturn
上放置断点
后,我发现即使我按下了 return/next 键,它也没有被访问。有人可以解释为什么吗?
谢谢。
After selecting a cell
and writing something in it, I would like to hit the return/next button on the keyboard and simply move to the next cell
, that's what I am trying to achieve. But after placing a breakpoint
on my method textfieldShouldReturn
, I find that it does not get visited, even though I pressed on the return/next key. Can someone explain why?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
细胞
是什么意思。仅当您在cell
中有UITextField
并且将delegate
设置为self
时,它才会调用。[cell.contentView addSubview:txt];
那么它肯定会调用
textFieldShouldReturn
方法。返回时单击What do you mean by
cell
. It will only call when you haveUITextField
in thecell
and also setdelegate
toself
.[cell.contentView addSubview:txt];
then it will definitely call
textFieldShouldReturn
method. on return click// 自定义表格视图单元格的外观。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {