您好我想在下一个按钮点击和上一个按钮点击时移动到html文件的下一页。
NSString *htmlPath = [[NSBundle mainBundle] pathForResource:@"opening" ofType:@"html"];
NSData *htmlData = [NSData dataWithContentsOfFile:htmlPath];
NSString *htmlString = [[NSString alloc] initWithData:htmlData encoding:NSUTF8StringEncoding];
[self.webView loadHTMLString:htmlString baseURL:[[NSBundle mainBundle] bundleURL]];
答案 0 :(得分:2)
要转到Forward
,Backward
,您只需要调用这些默认的UIWebview
方法
-(IBAction)goBackAction{
if(self.webView.canGoBack){
[self.webView goBack];
}
}
-(IBAction)goForwardAction{
if(self.webView.canGoForward){
[self.webView goForward];
}
}
希望这有帮助。