iOS實現自己的web瀏覽器(canGoBack),ioscangoback

來源:互聯網
上載者:User

iOS實現自己的web瀏覽器(canGoBack),ioscangoback
首先建立UIWebView,然後定義前進、後退、重新整理按鈕,並且需要實現UIWebViewDelegate方法
 
1.後退按鈕事件
 
-(IBAction)WebViewBack:(id)sender
 
{
 
    if([self.webview canGoBack]){
 
        [self.webview goBack];
 
         }
 
}
 
2、前進按鈕事件
 
-(IBAction)WebViewForward:(id)sender
 
{
 
    if([self.webview canGoForward])
 
    [self.webview goForward];
 
   }
 
3.重新整理事件
 
-(IBAction)WebViewRefresh:(id)sender
 
{
 
    [self.webview reload];
 
 }
 
4.UIWebViewDelegate代理方法webViewDidFinishLoad
 
-(void)webViewDidFinishLoad:(UIWebView *)webView1
 
{
 
    NSString *title = [webView1 stringByEvaluatingJavaScriptFromString:@"document.title"];
 
    _webviewTitleLabel.text=title;
 
 
    if(![webView1 canGoBack])
 
    {
 
        _btnWebviewGoBack.enabled=NO;
 
    }
 
    else
 
    {
 
        _btnWebviewGoBack.enabled=YES;
 
    }
 
     
 
    if(![webView1 canGoForward])
 
    {
 
        _btnWebviewGoForward.enabled=NO;
 
    }
 
    else
 
    {
 
        _btnWebviewGoForward.enabled=YES;
 
    }//在webView載入完成後判斷當前是否可以前進或後退,以決定後退鍵和前進鍵是否可用
 
    [_indicator stopRotateAnimation];//停止旋轉重新整理的圖片
 
    [_loadingView stopAnimating_LoadingView];//停止LoadingView的旋轉
 
}
 
5.UIWebViewDelegate代理方法webViewDidStartLoad
 
-(void)webViewDidStartLoad:(UIWebView *)webView
 
{  
 
    [_indicator startAnimating];//開始旋轉重新整理的圖片
 
    [_loadingView startAnimating_LoadingView];//開始LoadingView的旋轉
 
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.