UITextField 成为FirstResponder 不起作用

发布于 2024-11-19 15:12:48 字数 486 浏览 3 评论 0原文

我在屏幕底部有一个列表视图,在屏幕顶部有一个 4 字段输入表单。当我点击列表项时,我想将焦点设置到第一个文本字段。

我有这样的代码:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle  forRowAtIndexPath:(NSIndexPath *)indexPath
{

    ....
    ....
    else if(editingStyle == UITableViewCellEditingStyleInsert)
        {
               [self clrscreen];

               [oDescription becomeFirstResponder];
            }

但它不起作用。我是否必须先将焦点从列表视图中移出还是什么

I have a listview on the bottom part of the screen and a 4 field entry form at the top part of the screen. When I tap on the list item I would like to set focus to the 1st text field.

I have the code like this:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle  forRowAtIndexPath:(NSIndexPath *)indexPath
{

    ....
    ....
    else if(editingStyle == UITableViewCellEditingStyleInsert)
        {
               [self clrscreen];

               [oDescription becomeFirstResponder];
            }

but it doesnt work. Do I have to get the focus out of the listview first or something

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无力看清 2024-11-26 15:12:48

也许在

[self clrscreen];

您处理 UI 的方法中,UITableView 被重绘。如果是这样,那么在你打电话的那一刻,

[oDescription becomeFirstResponder];

它不在那里。请检查 oDescription 是否不是 nil

还有一件事:在哪里/什么时候调用:

....
....
else if(editingStyle == UITableViewCellEditingStyleInsert) ?

Maybe in the

[self clrscreen];

method you process the UI and the UITableView is redrawn. If that is so, at the moment you call the

[oDescription becomeFirstResponder];

it is not there. Please check if oDescription is not nil .

One more thing: where/when is this called:

....
....
else if(editingStyle == UITableViewCellEditingStyleInsert) ?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文