第三方框架-PDFViewer的使用
2014-10-30 15:22
141 查看
04.PDFViewer学习笔记
第1步:下载第三方框架 PDFViewer,下载地址:https://github.com/vfr/Reader
第2步:导入PDFViewer依赖的iOS框架
MessageUI.framework:发邮件用的,可以把PDF通过邮件的方式发给自己的好友
ImageIO.framework:图像底层的输入输出的接口,
QuartzCore.framework:绘图的时候用
第3步:往项目中导入Classes和Sources,
如果需要打印功能,需要往工程的Supporting Files下导入Graphics文件夹,导入后就自动支持PDF打印功能。
第4步:往控制器中引入PDFViewer的头文件
#import "ReaderViewController.h"
@interface MJViewController () <ReaderViewControllerDelegate>
第5步:开始使用
#import "MJViewController.h"
#import "ReaderViewController.h"
@interface MJViewController () <ReaderViewControllerDelegate>
@end
@implementation MJViewController
- (IBAction)click:(id)sender
{
// 1. 实例化控制器
NSString *path = [[NSBundle mainBundle] pathForResource:@"MobileHIG_iOS7_中文.pdf" ofType:nil];
ReaderDocument *doc = [[ReaderDocument alloc] initWithFilePath:path password:nil];
ReaderViewController *rvc = [[ReaderViewController alloc] initWithReaderDocument:doc];
rvc.delegate = self;
// 2. 显示ViewController
[self presentViewController:rvc animated:YES completion:nil];
}
- (void)dismissReaderViewController:(ReaderViewController *)viewController
{
[self dismissViewControllerAnimated:YES completion:nil];
}
第1步:下载第三方框架 PDFViewer,下载地址:https://github.com/vfr/Reader
第2步:导入PDFViewer依赖的iOS框架
MessageUI.framework:发邮件用的,可以把PDF通过邮件的方式发给自己的好友
ImageIO.framework:图像底层的输入输出的接口,
QuartzCore.framework:绘图的时候用
第3步:往项目中导入Classes和Sources,
如果需要打印功能,需要往工程的Supporting Files下导入Graphics文件夹,导入后就自动支持PDF打印功能。
第4步:往控制器中引入PDFViewer的头文件
#import "ReaderViewController.h"
@interface MJViewController () <ReaderViewControllerDelegate>
第5步:开始使用
#import "MJViewController.h"
#import "ReaderViewController.h"
@interface MJViewController () <ReaderViewControllerDelegate>
@end
@implementation MJViewController
- (IBAction)click:(id)sender
{
// 1. 实例化控制器
NSString *path = [[NSBundle mainBundle] pathForResource:@"MobileHIG_iOS7_中文.pdf" ofType:nil];
ReaderDocument *doc = [[ReaderDocument alloc] initWithFilePath:path password:nil];
ReaderViewController *rvc = [[ReaderViewController alloc] initWithReaderDocument:doc];
rvc.delegate = self;
// 2. 显示ViewController
[self presentViewController:rvc animated:YES completion:nil];
}
- (void)dismissReaderViewController:(ReaderViewController *)viewController
{
[self dismissViewControllerAnimated:YES completion:nil];
}
相关文章推荐
- iOS 第三方框架SDWebImage的简单使用
- phone开发中第三方框架SDWebImage的简单使用
- xcode6制作framework(使用第三方依赖框架)
- 【iOS开发-105】SQLite第三方框架FMDB的使用,以及使用FMDatabaseQueue保证线程安全
- xcode6制作framework(使用第三方依赖框架)
- 在真实项目中使用第三方或开源代的代码,组件,中间件,框架的基本规则
- xcode6制作framework(使用第三方依赖框架)
- IOS文件解析 之第三方框架Hpple的简单使用
- Yii框架官方指南系列36——扩展Yii:使用第三方库
- VLC第三方视频框架的使用 (第一步,导入VLC库)
- PHP学习#Yii扩展第三方框架的使用
- Android开发使用的常见第三方框架
- 第三方框架SDWebImage的使用
- 使用第三方框架的时候报“synthesize of ‘weak’ property is only allowed in ARC or GC mode”错
- IOS网络通信 之第三方框架ASIHttpRequest的简单使用
- andorid使用异步http框架和第三方HttpClinet上传文件
- OC第三方框架-ASI使用方法
- OC第三方框架-AFN的使用
- IOS界面UI设计9之常用工具包category、常用第三方框架的使用
- iso中第三方框架SDWebImage的使用步骤