在uiwebview中单击按钮时向后和向前移动

时间:2015-10-19 05:54:10

标签: ios

您好我想在下一个按钮点击和上一个按钮点击时移动到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]];

1 个答案:

答案 0 :(得分:2)

要转到ForwardBackward,您只需要调用这些默认的UIWebview方法

-(IBAction)goBackAction{
    if(self.webView.canGoBack){
      [self.webView goBack];
    }
}

-(IBAction)goForwardAction{
    if(self.webView.canGoForward){
      [self.webView goForward];
    }
}

希望这有帮助。