เราสามารถเปิดไฟล์ pdf โดยใช้ UIWebView บน iOS ได้หรือไม่?


คำตอบ:


278

ใช่สามารถทำได้ด้วย UIWebView

หากคุณกำลังพยายามแสดงไฟล์ PDF ที่อยู่บนเซิร์ฟเวอร์บางแห่งคุณสามารถโหลดไฟล์นั้นในมุมมองเว็บของคุณได้โดยตรง:

วัตถุประสงค์ -C

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

NSURL *targetURL = [NSURL URLWithString:@"https://www.example.com/document.pdf"];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];

[self.view addSubview:webView];

รวดเร็ว

let webView = UIWebView(frame: CGRect(x: 10, y: 10, width: 200, height: 200))

let targetURL = NSURL(string: "https://www.example.com/document.pdf")! // This value is force-unwrapped for the sake of a compact example, do not do this in your code
let request = NSURLRequest(URL: targetURL)
webView.loadRequest(request)

view.addSubview(webView)

หรือหากคุณมีไฟล์ PDF ที่มาพร้อมกับแอปพลิเคชันของคุณ (ในตัวอย่างนี้ชื่อ "document.pdf"):

วัตถุประสงค์ -C

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

NSURL *targetURL = [[NSBundle mainBundle] URLForResource:@"document" withExtension:@"pdf"];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];

[self.view addSubview:webView];

รวดเร็ว

let webView = UIWebView(frame: CGRect(x: 10, y: 10, width: 200, height: 200))

let targetURL = NSBundle.mainBundle().URLForResource("document", withExtension: "pdf")! // This value is force-unwrapped for the sake of a compact example, do not do this in your code
let request = NSURLRequest(URL: targetURL)
webView.loadRequest(request)

view.addSubview(webView)

คุณสามารถหาข้อมูลเพิ่มเติมได้ที่นี่: QA1630 เทคนิค: การใช้ UIWebView เพื่อแสดงชนิดเอกสารเลือก


ขอบคุณมาก ... บันทึกลงในไดเร็กทอรีเอกสารใน iPhone ได้ไหม
MohammedYakub Moriswala

3
ใช่เป็นไปได้ แต่คุณต้องใช้วิธีอื่นในการดึงเอกสารอื่นที่ไม่ใช่ WebView ค้นหาได้ที่นี่ใน Stack Overflow ตัวอย่างเช่นstackoverflow.com/questions/2102267/…
อัลลีอุส

เป็นไปได้ไหมที่จะพิมพ์ตัวเลือกที่นี่
ศิวะ

ที่นี่หน้า Pdf แสดงในแนวตั้งเป็นไปได้ไหมที่จะแสดงในแนวนอนโดยไม่ต้องเลื่อนแนวตั้ง
kunjus

@ MartinAlléus: ได้โปรดช่วยฉันด้วยstackoverflow.com/questions/21874538/…
Manthan


9

ใช้สำหรับเปิดไฟล์ pdf ใน webview

NSString *path = [[NSBundle mainBundle] pathForResource:@"mypdf" ofType:@"pdf"];
NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
UIWebView *webView=[[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 300, 300)];
[[webView scrollView] setContentOffset:CGPointMake(0,500) animated:YES];
[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"window.scrollTo(0.0, 50.0)"]];
[webView loadRequest:request];
[self.view addSubview:webView];
[webView release];

3
NSString *folderName=[NSString stringWithFormat:@"/documents/%@",[tempDictLitrature objectForKey:@"folder"]];
NSString *fileName=[tempDictLitrature objectForKey:@"name"];
[self.navigationItem setTitle:fileName];
NSString *type=[tempDictLitrature objectForKey:@"type"];

NSString *path=[[NSBundle mainBundle]pathForResource:fileName ofType:type inDirectory:folderName];

NSURL *targetURL = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
webView=[[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 1024, 730)];
[webView setBackgroundColor:[UIColor lightGrayColor]];
webView.scalesPageToFit = YES;

[[webView scrollView] setContentOffset:CGPointZero animated:YES];
[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"window.scrollTo(0.0, 50.0)"]];
[webView loadRequest:request];
[self.view addSubview:webView];

โปรดสร้างเส้นทางของไฟล์ PDF ของคุณก่อนและแปลงเป็น url และใช้รหัสนี้เพื่อโหลดการดูเว็บซึ่งใช้ได้ผลสำหรับฉันดังนั้นโปรดใช้รหัสเดียวกันในรหัสของคุณ
dheerendra

2

เวอร์ชัน Swift:

if let docPath = NSBundle.mainBundle().pathForResource("sample", ofType: "pdf") {
    let docURL = NSURL(fileURLWithPath: docPath)
    webView.loadRequest(NSURLRequest(URL: docURL))
}

2

การอัปเดตคำตอบของ Martin Alléusเพื่อให้ได้เต็มหน้าจอไม่ว่าจะเป็นโทรศัพท์หรือ iPad โดยไม่ต้องใช้ฮาร์ดโค้ด:

CGRect rect = [[UIScreen mainScreen] bounds];
CGSize screenSize = rect.size;
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,screenSize.width,screenSize.height)];

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

[self.view addSubview:webView];

2

สวิฟต์ 4

     let webView = UIWebView(frame: view.bounds)
    let targetURL = Bundle.main.url(forResource: "sampleFileName", withExtension: "pdf")
    let request = URLRequest(url: targetURL!)
    webView.loadRequest(request)
    view.addSubview(webView)

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

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

NSURL *targetURL = [NSURL URLWithString:@"http://unec.edu.az/application/uploads/2014/12/pdf-sample.pdf"];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
    [pdfWebView loadRequest:request];
    [self.view addSubview:pdfWebView];

0

WKWebView : ฉันคิดว่าคำถามนี้เป็นสถานที่ที่ดีที่สุดเพื่อให้คนรู้ว่าพวกเขาควรจะเริ่มใช้ WKWebview เป็นUIWebViewคือตอนนี้เลิกใช้เลิกใช้

วัตถุประสงค์ค

WKWebView *webView = [[WKWebView alloc] initWithFrame:self.view.frame];
webView.navigationDelegate = self;
NSURL *nsurl=[NSURL URLWithString:@"https://www.example.com/document.pdf"];
NSURLRequest *nsrequest=[NSURLRequest requestWithURL:nsurl];
[webView loadRequest:nsrequest];
[self.view addSubview:webView];

รวดเร็ว

let myURLString = "https://www.example.com/document.pdf"
let url = NSURL(string: myURLString)
let request = NSURLRequest(URL: url!)  
let webView = WKWebView(frame: self.view.frame)
webView.navigationDelegate = self
webView.loadRequest(request)
view.addSubview(webView)

ฉันไม่ได้คัดลอกรหัสนี้โดยตรงจาก Xcode ดังนั้นอาจมีข้อผิดพลาดทางไวยากรณ์บางอย่าง โปรดตรวจสอบขณะใช้งาน

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.