我正在使用WKWebview来显示网页并拥有一个UITextField,用户可以在其中输入他们希望导航到的URL(应用程序内浏览器)。当用户打字时,我想显示一系列可能性(即热门网站)。是否有任何Apple(或第三方)API可用于根据子字符串获取热门网站列表?
编辑:我需要使用WKWebView而不是新的Safari View Controller,因为我希望能够注入自定义的javascript(前者不允许)
答案 0 :(得分:1)
使用此网址自动完成
http://suggestqueries.google.com/complete/search?client=chrome&q=YOURQUERY
像
搜索客户=铬&安培; Q =苹果
使用TableView显示建议。
- (IBAction)act_search:(id)sender {
if([_txt_search.text length] > 2)
{
Code Here ...
[_tableview reloadData];
}
else
{
jsonarr = nil;
[_tableview reloadData];
}
}