UIWebView*webView =[[UIWebView alloc] initWithFrame:CGRectMake(10,10,200,200)];

NSURL
*targetURL =[NSURL URLWithString:@"http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIWebView_Class/UIWebView_Class.pdf"];
NSURLRequest*request =[NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];

[self.view addSubview:webView];
[webView release];

 

UIWebView*webView =[[UIWebView alloc] initWithFrame:CGRectMake(10,10,200,200)];

NSString*path =[[NSBundle mainBundle] pathForResource:@"document" ofType:@"pdf"];
NSURL
*targetURL =[NSURL fileURLWithPath:path];
NSURLRequest*request =[NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];

[self.view addSubview:webView];
[webView release];

相关文章:

  • 2022-01-22
  • 2022-12-23
  • 2021-11-12
  • 2021-04-12
  • 2021-09-29
猜你喜欢
  • 2022-12-23
  • 2021-11-12
  • 2021-09-07
  • 2021-12-06
  • 2021-12-28
  • 2021-09-02
  • 2022-12-23
相关资源
相似解决方案