marsant
marsant

Reputation: 1108

How to change keyboard button "Return" to "Search" for input in a UIWebView?

I have this simple HTML file that is to be displayed in a UIWebView.

<html>
<body>
  <p>
  <input name='search' type='search' placeholder="Input type is search" />
</body>
</html>

Here is the screenshot when I clicked the input box.

enter image description here

How to change the Return button to 'Search' like Google page does?

enter image description here

Upvotes: 4

Views: 8458

Answers (3)

marsant
marsant

Reputation: 1108

I found a simple solution. Just wrap the input with form tag so the HTML looks like this.

<html>
<body>
  <p>
  <form>
    <input name='search' type='search' placeholder="Input type is search" />
  </form>
</body>
</html>

And now the keyboard looks like

enter image description here

Upvotes: 11

Gurpreet
Gurpreet

Reputation: 181

You have to select the textfield & in identity inspector you select search shown in pic below :

Upvotes: -3

dcorbatta
dcorbatta

Reputation: 1889

Looking in the reference: Text Programming Guide for iOS and I can see that the type search isn't an option, so I think that Safari handle that with a different way. Maybe with a custom inputview. Take a look in my answer to do that.

Upvotes: 1

Related Questions