当“Go”执行时 UIWebView 中会发生什么?按钮被触摸

发布于 2024-10-29 12:24:54 字数 132 浏览 1 评论 0原文

如果您有一个带有文本字段的 UIWebView 和一个从该文本字段获取值然后执行某些操作的按钮。

当您触摸文本字段时,键盘上会显示“Go”按钮。我想弄清楚按下“Go”按钮时到底会发生什么?

我如何以编程方式模拟该操作?

If you have a UIWebView with a textfield and a button that takes the value from that textfield and then performs some action.

When you touch the textfield, the keyboard is displayed with a Go Button. I'm trying to figure out what exactly happens under the hood when that Go Button is pressed?

How I would simulate that action programmatically?

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

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

发布评论

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

评论(1

南笙 2024-11-05 12:24:54

当用户按下键盘的 GO 按钮时,将使用以下内容...

     NSString *urlAddress = mytextFieldText.text;
    //Create a URL object.
    NSURL *url = [NSURL URLWithString:urlAddress];
    NSURLRequest *aRequest = [NSURLRequest requestWithURL:aURL];
    //load the index.html file into the web view.
    [aWebView loadRequest:aRequest];

谢谢

,检查下面的 SO 帖子以收听 UITextField 中的键盘 GO 按钮。

关闭 iPhone 键盘

The following will be used, when user press on GO button of Keyboard ...

     NSString *urlAddress = mytextFieldText.text;
    //Create a URL object.
    NSURL *url = [NSURL URLWithString:urlAddress];
    NSURLRequest *aRequest = [NSURLRequest requestWithURL:aURL];
    //load the index.html file into the web view.
    [aWebView loadRequest:aRequest];

Thanks

Check the below SO post for listening to keyboard GO button in UITextField.

Dismiss iphone keyboard

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