UITextField 中的 WKWebView 自动完成建议

WKWebView autocomplete suggestions in UITextField

我正在使用 WKWebview 来显示网页并有一个 UITextField,用户可以在其中输入 URL 他们希望导航到的内容(各种应用程序内浏览器)。当用户打字时,我想显示一个可能性列表(即热门网站)。是否有任何 Apple(或第 3 方)API 可用于获取基于子字符串的热门网站列表?

编辑:我需要使用 WKWebView 而不是新的 Safari View Controller,因为我希望能够注入自定义 javascript(这在前者中是不允许的)

使用此 URL 自动完成

http://suggestqueries.google.com/complete/search?client=chrome&q=YOURQUERY

喜欢

search?client=chrome&q=apple

使用 TableView 显示建议。

- (IBAction)act_search:(id)sender {
    if([_txt_search.text length] > 2)
    {

        Code Here ...

        [_tableview reloadData];


    }
    else
    {
        jsonarr = nil;
        [_tableview reloadData];
    }


}