iOS实现PDF文件浏览功能

写了一个小Demo,显示本地PDF格式文件,支持翻页、跳页、缩放。

先看一下效果图:

iOS开发,显示PDF格式文件方法有很多:

  • 最简单的应该是UIWebView,可以加载本地或网络PDF文件,支持上下滑动浏览、缩放。
  • 优化一点的是用系统的QLPreviewController加载,实现起来也比较方便,支持上下滑动浏览,左后滑动可多PDF文件切换,同时支持原生的分享打印,QLPreviewController支持的文档格式也比较多,如pdf、doc、docx、xls、xlsx、txt、ppt、mp4...
  • 上面两种都没有足够的自定义空间,不在这里做过多的介绍了,另外一种也就是本篇用到的iOS核心图形库:Core Graphics,绘制PDF文档。

简单说一下逻辑,根据本地路径获取到CGPDFDocumentRef,在drawRect中绘制上下文,画出PDF文件。通过UIScrollView实现缩放,添加UIGestureRecognizer实现单击、双击、左滑、右滑功能。基于CATransition实现翻页动画。

下面贴上核心代码:

承载PDF文件视图的控制器:HWPDFBrowseVC

#import <UIKit/UIKit.h>

@interface HWPDFBrowseVC : UIViewController

@property (nonatomic, copy) NSString *filePath;
@property (nonatomic, copy) NSString *fileName;

@end

/*** ---------------分割线--------------- ***/

#import "HWPDFBrowseVC.h"
#import "HWPDFBrowseView.h"
#import "HWPDFBrowseToolBar.h"
#import "HWPDFBrowseScrollView.h"

#define KPicMaxScale 3.0
#define KMainW [UIScreen mainScreen].bounds.size.width
#define KMainH [UIScreen mainScreen].bounds.size.height

@interface HWPDFBrowseVC ()<UIScrollViewDelegate, HWPDFBroeseToolBarDelegate>

@property (nonatomic, weak) HWPDFBrowseScrollView *scrollView;
@property (nonatomic, weak) HWPDFBrowseView *browseView;
@property (nonatomic, weak) HWPDFBrowseToolBar *toolBar;
@property (nonatomic, assign) CGFloat minZoomScale;
@property (nonatomic, assign) CGFloat lastScrContX;

@end

@implementation HWPDFBrowseVC

- (void)viewDidLoad {
 [super viewDidLoad];

 //初始化
 self.view.backgroundColor = [UIColor whiteColor];
 self.navigationItem.title = _fileName;

 //创建控件
 [self creatControl];
}

- (void)viewWillDisappear:(BOOL)animated
{
 [super viewWillDisappear:animated];

 //防止隐藏导航时,左滑返回导航消失
 CGRect temNavBarFrame = self.navigationController.navigationBar.frame;
 temNavBarFrame.origin.y = 20;
 self.navigationController.navigationBar.frame = temNavBarFrame;
}

- (void)creatControl
{
 //导航右侧按钮
 UIButton *deleteBtn = [[UIButton alloc] initWithFrame:CGRectMake(9, 0, 40, 40)];
 deleteBtn.titleLabel.font = [UIFont systemFontOfSize:16.f];
 [deleteBtn setTitle:@"跳页" forState:UIControlStateNormal];
 [deleteBtn setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];
 [deleteBtn addTarget:self action:@selector(navBtnOnClick) forControlEvents:UIControlEventTouchUpInside];
 UIView *rightView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
 [rightView addSubview:deleteBtn];
 self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:rightView];

 //scrollView
 HWPDFBrowseScrollView *scrollView = [[HWPDFBrowseScrollView alloc] initWithFrame:[UIScreen mainScreen].bounds];
 scrollView.delegate = self;
 scrollView.backgroundColor = [UIColor blackColor];
 scrollView.maximumZoomScale = KPicMaxScale;
 scrollView.showsVerticalScrollIndicator = NO;
 scrollView.showsHorizontalScrollIndicator = NO;
 [self.view addSubview:scrollView];
 _scrollView = scrollView;

 //pdf视图
 HWPDFBrowseView *browseView = [[HWPDFBrowseView alloc] initWithFilePath:_filePath];
 [scrollView addSubview:browseView];
 _browseView = browseView;

 //绘制pdf视图后缩放至屏幕完全居中显示
 CGRect frame = browseView.frame;
 frame.size.width = browseView.frame.size.width > KMainW ? KMainW : browseView.frame.size.width;
 frame.size.height = frame.size.width * (browseView.frame.size.height / browseView.frame.size.width);
 if (frame.size.height > KMainH) {
 frame.size.height = KMainH;
 frame.size.width = KMainH * (browseView.frame.size.width / browseView.frame.size.height);
 }

 //根据缩放调整
 _minZoomScale = frame.size.width / browseView.frame.size.width;
 scrollView.allowScrollScale = _minZoomScale;
 scrollView.minimumZoomScale = _minZoomScale;
 scrollView.zoomScale = _minZoomScale;

 //底部工具栏
 HWPDFBrowseToolBar *toolBar = [[HWPDFBrowseToolBar alloc] initWithFrame:CGRectMake(0, KMainH - 49, KMainW, 49) currentPage:_browseView.currentPage totalPage:_browseView.totalPages];
 toolBar.delegate = self;
 [self.view addSubview:toolBar];
 _toolBar = toolBar;

 //单击
 UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(click)];
 tap.numberOfTouchesRequired = 1;
 tap.numberOfTapsRequired = 1;
 [scrollView addGestureRecognizer:tap];

 //双击
 UITapGestureRecognizer *tapDouble = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(doubleClick)];
 tapDouble.numberOfTapsRequired = 2;
 [scrollView addGestureRecognizer:tapDouble];
 [tap requireGestureRecognizerToFail:tapDouble];

 //右滑手势
 UISwipeGestureRecognizer *rightSwip = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(nextPage)];
 rightSwip.direction = UISwipeGestureRecognizerDirectionLeft;
 [scrollView addGestureRecognizer:rightSwip];

 //左滑手势
 UISwipeGestureRecognizer *leftSwip = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(forwardPage)];
 leftSwip.direction = UISwipeGestureRecognizerDirectionRight;
 [scrollView addGestureRecognizer:leftSwip];
}

- (void)navBtnOnClick
{
 [_toolBar showWindow];
}

//单击屏幕显示隐藏菜单
- (void)click
{
 CGFloat navBarY = _toolBar.frame.origin.y == KMainH - 49 ? -64 : 20;
 CGFloat toolBarY = _toolBar.frame.origin.y == KMainH - 49 ? KMainH : KMainH - 49;

 [UIView animateWithDuration:0.25 animations:^{
 CGRect temNavBarFrame = self.navigationController.navigationBar.frame;
 temNavBarFrame.origin.y = navBarY;
 self.navigationController.navigationBar.frame = temNavBarFrame;
 CGRect temToolBarFrame = _toolBar.frame;
 temToolBarFrame.origin.y = toolBarY;
 _toolBar.frame = temToolBarFrame;
 }];
}

//双击屏幕放大缩小图片
- (void)doubleClick
{
 [UIView animateWithDuration:0.25f animations:^{
 _scrollView.zoomScale = _scrollView.zoomScale == _minZoomScale ? KPicMaxScale : _minZoomScale;
 }];
}

//左滑事件
- (void)nextPage
{
 [_browseView nextPage];
 _toolBar.currentPage = _browseView.currentPage;
}

//右滑事件
- (void)forwardPage
{
 [_browseView prePage];
 _toolBar.currentPage = _browseView.currentPage;
}

#pragma mark - UICouseBrowseToolBarDelegate
- (void)browseToolBar:(HWPDFBrowseToolBar *)browseToolBar didClickFinishButtonWithPage:(NSString *)page
{
 _browseView.currentPage = [page integerValue];
 [_browseView reloadView];
 [_toolBar dismissKeyboard];
 _scrollView.zoomScale = _minZoomScale;
}

- (void)browseToolBar:(HWPDFBrowseToolBar *)browseToolBar didPageButtonWithAction:(BOOL)nextPage
{
 if (nextPage) {
 [self nextPage];
 }else {
 [self forwardPage];
 }
 _scrollView.zoomScale = _minZoomScale;
}

#pragma mark - UIScrollViewDelegate
- (void)scrollViewDidZoom:(UIScrollView *)scrollView
{
 CGFloat offsetX = (scrollView.bounds.size.width > scrollView.contentSize.width) ? (scrollView.bounds.size.width - scrollView.contentSize.width) * 0.5 : 0.0;
 CGFloat offsetY = (scrollView.bounds.size.height > scrollView.contentSize.height) ? (scrollView.bounds.size.height - scrollView.contentSize.height) * 0.5 : 0.0;
 _browseView.center = CGPointMake(scrollView.contentSize.width * 0.5 + offsetX, scrollView.contentSize.height * 0.5 + offsetY - 64);
}

- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView
{
 return _browseView;
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
 if (scrollView.isZooming) return;

 //允许翻页的偏移量
 CGFloat movePadding = 70.f;

 //仿苹果原生相册,图片放大后,滑动前在边界时在可以翻页,这里加了±10的偏移量
 if (scrollView.contentOffset.x < - movePadding && _lastScrContX < 10) {
 _scrollView.zoomScale = _minZoomScale;
 [self forwardPage];
 }

 if (scrollView.contentSize.width - scrollView.contentOffset.x < KMainW - movePadding && scrollView.contentSize.width != 0 && fabsf(_lastScrContX + KMainW - scrollView.contentSize.width) < 10) {
 _scrollView.zoomScale = _minZoomScale;
 [self nextPage];
 }
}

//滑动自然停止时调用
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
 _lastScrContX = scrollView.contentOffset.x;
}

//滑动手动停止时调用
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
 _lastScrContX = scrollView.contentOffset.x;
}

- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
}

@end

PDF文件视图:HWPDFBrowseView

#import <UIKit/UIKit.h>

@interface HWPDFBrowseView : UIView{
 CGPDFDocumentRef pdfDocumentRef;
}

@property (nonatomic, assign) NSInteger currentPage;
@property (nonatomic, assign) NSInteger totalPages;

- (id)initWithFilePath:(NSString *)filePath;
- (void)reloadView;
- (void)prePage;
- (void)nextPage;

@end

/*** ---------------分割线--------------- ***/

#import "HWPDFBrowseView.h"

@implementation HWPDFBrowseView

- (id)initWithFilePath:(NSString *)filePath
{
 pdfDocumentRef = [self createPDFFromExistFile:filePath];

 self = [super initWithFrame:CGPDFPageGetBoxRect(CGPDFDocumentGetPage(pdfDocumentRef, 1), kCGPDFMediaBox)];

 return self;
}

- (CGPDFDocumentRef)createPDFFromExistFile:(NSString *)aFilePath
{
 CFStringRef path = CFStringCreateWithCString(NULL, [aFilePath UTF8String], kCFStringEncodingUTF8);
 CFURLRef urlRef = CFURLCreateWithFileSystemPath(NULL, path, kCFURLPOSIXPathStyle, NO);
 CFRelease(path);
 CGPDFDocumentRef document = CGPDFDocumentCreateWithURL(urlRef);
 CFRelease(urlRef);
 _totalPages = CGPDFDocumentGetNumberOfPages(document);
 _currentPage = 1;
 if (_totalPages == 0) return NULL;

 return document;
}

- (void)reloadView
{
 [self setNeedsDisplay];
}

- (void)drawRect:(CGRect)rect
{
 CGContextRef context = UIGraphicsGetCurrentContext();
 [[UIColor whiteColor] set];
 CGContextFillRect(context, rect);
 CGContextTranslateCTM(context, 0.0, rect.size.height);
 CGContextScaleCTM(context, 1.0, -1.0);
 CGPDFPageRef page = CGPDFDocumentGetPage(pdfDocumentRef, _currentPage);
 CGAffineTransform pdfTransform = CGPDFPageGetDrawingTransform(page, kCGPDFCropBox, rect, 0, true);
 CGContextConcatCTM(context, pdfTransform);
 CGContextDrawPDFPage(context, page);
}

//上一页
- (void)prePage
{
 if(_currentPage < 2) {
 UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"提示" message:@"已经第一页了!" delegate:self cancelButtonTitle:@"确定" otherButtonTitles: nil ];
 [alert show];
 return;
 }

 --_currentPage;
 [self reloadView];
 [self transitionWithType:@"pageUnCurl" WithSubtype:kCATransitionFromRight ForView:self];
}

//下一页
- (void)nextPage
{
 if(_currentPage >= _totalPages) {
 UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"提示" message:@"已经最后一页了!" delegate:self cancelButtonTitle:@"确定" otherButtonTitles: nil ];
 [alert show];
 return;
 }

 ++_currentPage;
 [self reloadView];
 [self transitionWithType:@"pageCurl" WithSubtype:kCATransitionFromRight ForView:self];
}

//设置翻页动画效果
- (void)transitionWithType:(NSString *)type WithSubtype:(NSString *)subtype ForView:(UIView *)view
{
 CATransition *animation = [CATransition animation];
 animation.duration = 0.7f;
 animation.type = type;
 if (subtype) animation.subtype = subtype;
 animation.timingFunction = UIViewAnimationOptionCurveEaseInOut;
 [view.layer addAnimation:animation forKey:@"animation"];
}

@end

Demo 下载链接

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 微信或手机浏览器在线显示office文件(已测试ios、android)

    最近开发微信企业号,发现微信andriod版内置浏览器在打开文件方面有问题,但是ios版没有问题,原因是ios版使用的是safari浏览器 支持文档直接打开,但是andriod版使用的是腾讯浏览器x5内核,不知道什么原因不支持,可能是集成出现的问题,这里提供解决方法,这种方法也同样适用手机浏览器或者安卓开发.通过此方法可以在微信上开发自己的第三方应用,或者解决自己的项目问题,解决方法及核心代码如下: 1.判断浏览器类型 HttpServletRequest req = ServletAction

  • iOS下PDF文件的浏览和涂鸦效果的简单实现

    浏览PDF的效果 方法一:利用webview 复制代码 代码如下: -(void)loadDocument:(NSString *)documentName inView:(UIWebView *)webView  {      NSString *path = [[NSBundle mainBundle] pathForResource:documentName ofType:nil];      NSURL *url = [NSURL fileURLWithPath:path];     

  • iOS实现PDF文件浏览功能

    写了一个小Demo,显示本地PDF格式文件,支持翻页.跳页.缩放. 先看一下效果图: iOS开发,显示PDF格式文件方法有很多: 最简单的应该是UIWebView,可以加载本地或网络PDF文件,支持上下滑动浏览.缩放. 优化一点的是用系统的QLPreviewController加载,实现起来也比较方便,支持上下滑动浏览,左后滑动可多PDF文件切换,同时支持原生的分享打印,QLPreviewController支持的文档格式也比较多,如pdf.doc.docx.xls.xlsx.txt.ppt.m

  • Android编程实现文件浏览功能的方法【类似于FileDialog的功能】

    本文实例讲述了Android编程实现文件浏览功能的方法.分享给大家供大家参考,具体如下: 最近正在弄上传文件,当时想怎么能实现fileDialog的功能呢,打开文件,浏览文件,然后选择文件呢,查了好多资料,也看了不少论坛,都说里面没有这个功能,那真是奇怪了,里面没有这个功能,当然就需要自己动手添加这个功能了. 首先说一下这个文件浏览的简单实现原理: 首先选择一个目录做为根目录,然后打开此目录,常用的就是使用File这个类了,如下: File file=new File(path); 然后可以通过

  • iOS开发实现图片浏览功能

    本文实例为大家分享了iOS实现图片浏览功能的具体代码,供大家参考,具体内容如下 这是整体的效果图: 其中main.stroyboard中的控件有2个button,2个label,一个imageView.设置他们的位置大小和背景颜色和图片.让main.storyboard连接ViewController.m 下面是它的代码: #import "ViewController.h" @interface ViewController () @property (weak, nonatomic

  • python连接打印机实现打印文档、图片、pdf文件等功能

    引言 python连接打印机进行打印,可能根据需求的不同,使用不同的函数模块. 如果你只是简单的想打印文档,比如office文档,你可以使用ShellExecute方法,对于微软office的文档.pdf.txt等有用,你可以尝试下: 如果你输入某些数据,文字信息,就想直接把它发送给打印机打印,那么可以尝试使用win32print: 如果你有一张图片,那么你可以结合python的Python Imaging Library(PIL)和win32ui模块进行打印: 普通打印 ShellExecut

  • Android集成腾讯X5实现文档浏览功能

    Android内部没有控件来直接显示文档,跳转WPS或其他第三方文档App体验性不好,使用腾讯X5内核能很好的解决的这一问题. 一.下载腾讯X5内核 1.前往https://x5.tencent.com/下载Android的内核,新版本的腾讯X5可以直接在bulid.gradle集成 api 'com.tencent.tbs.tbssdk:sdk:43697',如果是在App里集成可以把api换成implementation 2.AndroidStudio导入腾讯X5 a.把下载好的jar包导入

  • Android 打开本地pdf文件

    Android 中打开pdf文件也是一种很常见的场景,但是上网找了好多资料,有用WebView加载的,但是要用vpn才能搞,最后发现一个库挺不错的,再次分享给大家 android-pdfview.下面主要说一下该库的使用方法. 1. 该库的下载地址 https://github.com/JoanZapata/android-pdfview 源码下载:http://xiazai.jb51.net/201704/yuanma/android-pdfview-master_jb51.rar 2. an

  • Python结合ImageMagick实现多张图片合并为一个pdf文件的方法

    本文实例讲述了Python结合ImageMagick实现多张图片合并为一个pdf文件的方法.分享给大家供大家参考,具体如下: 前段时间买了不少书,现在手头的书籍积累的越来越多,北京这边租住的小屋子空间越来越满了.自从习惯了笔记本触摸板的手势操作之后,我偶觉得使用电脑看电子文档也挺享受的.于是想把自己的部分书籍使用手机拍照,然后合并成一个pdf文件. 最初尝试过找成熟的Windows软件,但是始终没有找到一个好用的软件.想写脚本处理,一直也没有实现.偶然查看ImageMagick软件的说明,找到了

  • Vue实现在线预览pdf文件功能(利用pdf.js/iframe/embed)

    前言 最近在做一个精品课程,需要在线预览课件ppt,我们的思路是将ppt转换为pdf在线预览,所以问题就是如何实现在线预览pdf了. 在实现的过程中,为了更好地显示效果,我采用了多种不同的方法,最终选择效果最好的pdf.js. 实现方法: 1:iframe 采取iframe将pdf嵌入网页从而达到预览效果,想法很美好,实现很简单,但显示很残酷- 虽然一行代码简洁明了,打开谷歌浏览器效果也还行,但缺点也是十分明显的!!!! <iframe src="http......" widt

  • Java实现PDF文件的分割与加密功能

    由于``某些不可抗力原因,公司不允许使用itext系列的jar包,因此系统中使用的相关jar得替换成开源的.经比较和尝试考虑使用org.apache.pdfbox来替换,同时修改系统中原有的方法,发现比itext系列稍显简洁一点,记录如下: 加密文件 /** * 加密文件测试 * @from fhadmin.cn */ @Test public void encryptTest(){ try { String filePath = "D:\\test\\像李开复一样思考人生.pdf";

随机推荐