ฉันมี UIWebView พร้อมไฟล์ pdf มันทำงานได้ดี แต่ฉันจะเปิดใช้งานการซูมไฟล์ pdf ได้อย่างไร
ฉันมี UIWebView พร้อมไฟล์ pdf มันทำงานได้ดี แต่ฉันจะเปิดใช้งานการซูมไฟล์ pdf ได้อย่างไร
คำตอบ:
ตรวจสอบว่าคุณได้เลือก "หน้าเครื่องชั่งพอดี"
คุณสามารถใช้แบบเป็นwebView.scalesPageToFit=YES;
โปรแกรมได้
หากคุณใช้ใน xib มากกว่าเพียง click the check box "Scaling" scales Page to fit
Logic นี้สำหรับการซูม UIWebView ไม่จำเป็นต้องเพิ่ม UIWebView บน UIScrollView
ปัญหาเดียวwebView.scalesPageToFit = YES;
คือมันจะเปลี่ยนเนื้อหาเริ่มต้นของขนาดตัวอักษร แต่ฉันพบตัวเลือกอื่น
เพิ่ม<UIWebViewDelegate, UIScrollViewDelegate>
ในไฟล์. hของคุณ
การสร้างไฟล์ UIWebView.
self.mWebview = [[UIWebView alloc] init];
self.mWebview.delegate = self; /// set delegate method of UIWebView
self.mWebview.frame = CGRectMake(0, 35, self.view.bounds.size.width, self.view.bounds.size.height - 80); // set frame whatever you want..
[self.mWebview setOpaque:NO];
self.mWebview.backgroundColor = [UIColor clearColor];
[self.view addSubview:self.mWebview];
ด้วยการโหลดไฟล์ HTML / เนื้อหา
NSString* htmlString = [NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"File Name"ofType:@"html"] encoding:NSUTF8StringEncoding error:nil];
[self.mWebview loadHTMLString:htmlString baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];
#pragma mark -
#pragma mark - Webview Delegate Methods
- (void) webViewDidFinishLoad:(UIWebView *)webView
{
webView.scrollView.delegate = self; // set delegate method of UISrollView
webView.scrollView.maximumZoomScale = 20; // set as you want.
webView.scrollView.minimumZoomScale = 1; // set as you want.
//// Below two line is for iOS 6, If your app only supported iOS 7 then no need to write this.
webView.scrollView.zoomScale = 2;
webView.scrollView.zoomScale = 1;
}
#pragma mark -
#pragma mark - UIScrollView Delegate Methods
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(float)scale
{
self.mWebview.scrollView.maximumZoomScale = 20; // set similar to previous.
}
หมายเหตุ:ฉันต้องทดสอบบน Mac OS X - 10.9.3 ด้วย Xcode 5.1.1 และ iOS เวอร์ชัน 6.1 และใหม่กว่า
ฉันหวังว่านี่จะเป็นประโยชน์สำหรับคุณ :)
ฉันรู้ว่าคำถามนี้ค่อนข้างเก่า แต่สำหรับทุกคนที่ใช้สตอรีบอร์ดและต้องการคำตอบที่เป็นภาพอยู่ที่นี่ เพียงทำเครื่องหมายในช่องนี้ในตัวตรวจสอบคุณสมบัติของ WebView:
คุณต้องตั้งค่า scalePageToFit = ใช่สำหรับการบีบและซูมเพื่อทำงานบน UIWebView มันได้ผลสำหรับฉัน