码迷,mamicode.com
首页 > 移动开发 > 详细

IOS-简单WebView的使用

时间:2014-05-01 15:13:29      阅读:420      评论:0      收藏:0      [点我收藏+]

标签:style   class   tar   int   string   art   set   http   com   load   使用   

//要实现UIWebViewDelegate代理

@interface TestViewController : UIViewController<UIWebViewDelegate>

{

    UIWebView *protWebView;

}

@property (retain, nonatomic) IBOutletUIWebView *protWebView;


@implementation TestViewController

@synthesize protWebView;


- (void)viewDidLoad

{

    NSLog(@"viewDidLoad");

    [superviewDidLoad];

// Do any additional setup after loading the view, typically from a nib.

NSURL *url = [[NSURL alloc]initWithString:@"http://www.baidu.com"];

    [protWebViewloadRequest:[NSURLRequestrequestWithURL:url]];  

}

//几个代理方法

- (void)webViewDidStartLoad:(UIWebView *)webView{

    NSLog(@"webViewDidStartLoad"); 

}

- (void)webViewDidFinishLoad:(UIWebView *)web{

    NSLog(@"webViewDidFinishLoad"); 

}

-(void)webView:(UIWebView*)webView  DidFailLoadWithError:(NSError*)error{

    NSLog(@"DidFailLoadWithError");

}

IOS-简单WebView的使用,布布扣,bubuko.com

IOS-简单WebView的使用

标签:style   class   tar   int   string   art   set   http   com   load   使用   

原文地址:http://www.cnblogs.com/jhonyzhang/p/3700765.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!