嗨,我想这很简单,希望它能以简单的方式得到回答!
当内部的按钮被触摸时,如何更改uiwebview的URL?
意思是说我将只有一个Web视图,并且每次单击按钮时WebView的URL
更改并重新加载新页面
谢谢
最佳答案
正如您所建议的,这非常简单:
-(void)buttonPressed:(id)sender {
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://website.com/"]]];
}
这都是非常well documented。