我有四个链接到它的按钮。当单击按钮等其他按钮时,如何让 webview 转到该特定链接?我以为会是这样,但事实并非如此
WebView.detailURL = [[[redLinks objectAtIndex:indexPath.section] objectAtIndex:NSIndexPath.row] objectForKey:@\"URL\"];
我有四个链接到它的按钮。当单击按钮等其他按钮时,如何让 webview 转到该特定链接?我以为会是这样,但事实并非如此
WebView.detailURL = [[[redLinks objectAtIndex:indexPath.section] objectAtIndex:NSIndexPath.row] objectForKey:@\"URL\"];
使用新的 detailURL 重新加载您的 webView
[yourWebView loadRequest:[NSURLRequest requestWithURL:detailURL]];
你的问题很模糊,但据我了解,你需要这样的东西
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"google.com"]]];
您在每个按钮的 IBAction 中放置类似的内容,并将“google.com”更改为您需要的内容