关于NJKWebViewProgress的纯代码编写。

来源:互联网 发布:淘宝上的轮毂不能买 编辑:程序博客网 时间:2024/04/29 19:46

代码如下:

//

//  ViewController.m

//  NJKWebViewTest

//


#import "ViewController.h"

#import "NJKWebViewProgress.h"

#import "NJKWebViewProgressView.h"


@interface ViewController ()<NJKWebViewProgressDelegate,UIWebViewDelegate>


@property (nonatomic ,strong) UIWebView * webView;

@property (nonatomic ,strong) NJKWebViewProgressView * progressView;

@property (nonatomic ,strong) NJKWebViewProgress * progressPoxy;


@end


@implementation ViewController


- (void)viewDidLoad {

    [superviewDidLoad];

    

    //这一步很重要,必须先创建出来,否则你的进度条将不会动

    _webView = [[UIWebViewalloc]initWithFrame:CGRectMake(0, 0,self.view.frame.size.width,self.view.frame.size.height-100)];

    _webView.center =self.view.center;

    

    _progressPoxy = [[NJKWebViewProgressalloc]init];

    _webView.delegate =_progressPoxy;

    _progressPoxy.webViewProxyDelegate =self;

    _progressPoxy.progressDelegate =self;

    

    //示例网址

    //http://58.96.180.232:80/ftl/html5/index/10.html?1451553857312

    

    _progressView = [[NJKWebViewProgressViewalloc]initWithFrame:CGRectMake(0,self.navigationController.navigationBar.frame.size.height-2,self.navigationController.navigationBar.frame.size.width, 2)];

    _progressView.autoresizingMask =UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleTopMargin;

    //初始化进度条进度

    [_progressViewsetProgress:0 animated:YES];

    

    [self loadWeb];

    

}

-(void)loadWeb{

    

    NSURLRequest * request = [NSURLRequestrequestWithURL:[NSURLURLWithString:@"http://58.96.180.232:80/ftl/html5/index/10.html?1451553857312"]cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheDatatimeoutInterval:5];

    [_webView loadRequest:request];

    [self.viewaddSubview:_webView];

}

#pragma mark - NJKWebViewProgressDelegate

-(void)webViewProgress:(NJKWebViewProgress *)webViewProgress updateProgress:(float)progress

{

    [_progressViewsetProgress:progress animated:YES];

    self.title = [_webViewstringByEvaluatingJavaScriptFromString:@"document.title"];

}


-(void)viewWillAppear:(BOOL)animated{

    [super viewWillAppear:animated];

    [self.navigationController.navigationBaraddSubview:_progressView];

}

-(void)viewWillDisappear:(BOOL)animated{

    [super viewWillDisappear:animated];

    [_progressViewremoveFromSuperview];

}






@end



0 0