本文转载至 http://blog.csdn.net/devday/article/details/6580444
 

ios 4 sdk中支技文档的预览功能,何为预览?就是你打印文件时的预览功能。其用到quicklook.framework,它支持的文档格式有: iWork documents, Microsoft Office, Rich Text Format, PDF, images, text files and comma-separated (csv) files.

今天show一个demo,展示其用法:

第一步:创建一个基于view的工程,并加入quicklook.framewrok

第二步:修改Controller的头文件如下:

  1. #import <QuickLook/QuickLook.h>
  2. @interface TestViewController : UITableViewController <QLPreviewControllerDataSource>
  3. {
  4. NSArray *arrayOfDocuments;
  5. }
  6. @end

修改 controller执行文件如下

  1. #import "TestViewController.h"
  2. @implementation TestViewController
  3. #pragma mark -
  4. #pragma mark Initialization
  5. /*---------------------------------------------------------------------------
  6. *
  7. *--------------------------------------------------------------------------*/
  8. -(id)init
  9. {
  10. if (self = [super init])
  11. {
  12. arrayOfDocuments = [[NSArray alloc] initWithObjects:
  13. @"iOSDevTips.png", @"Remodel.xls", @"Core J2ME Technology.pdf", nil];
  14. }
  15. return self;
  16. }
  17. /*---------------------------------------------------------------------------
  18. *
  19. *--------------------------------------------------------------------------*/
  20. - (void)loadView
  21. {
  22. [super loadView];
  23. [self setTitle:@"Files Available for Preview"];
  24. }
  25. #pragma mark -
  26. #pragma mark Table Management
  27. // Customize the number of sections in the table view.
  28. /*---------------------------------------------------------------------------
  29. *
  30. *--------------------------------------------------------------------------*/
  31. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  32. {
  33. return 1;
  34. }
  35. /*---------------------------------------------------------------------------
  36. *
  37. *--------------------------------------------------------------------------*/
  38. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  39. {
  40. return [arrayOfDocuments count];
  41. }
  42. /*---------------------------------------------------------------------------
  43. *
  44. *--------------------------------------------------------------------------*/
  45. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  46. {
  47. static NSString *CellIdentifier = @"tableRow";
  48. UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  49. if (cell == nil)
  50. cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
  51. // ???
  52. [[cell textLabel] setText:[arrayOfDocuments objectAtIndex:indexPath.row]];
  53. [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
  54. return cell;
  55. }
  56. /*---------------------------------------------------------------------------
  57. *
  58. *--------------------------------------------------------------------------*/
  59. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  60. {
  61. // When user taps a row, create the preview controller
  62. QLPreviewController *previewer = [[[QLPreviewController alloc] init] autorelease];
  63. // Set data source
  64. [previewer setDataSource:self];
  65. // Which item to preview
  66. [previewer setCurrentPreviewItemIndex:indexPath.row];
  67. // Push new viewcontroller, previewing the document
  68. [[self navigationController] pushViewController:previewer animated:YES];
  69. }
  70. #pragma mark -
  71. #pragma mark Preview Controller
  72. /*---------------------------------------------------------------------------
  73. *
  74. *--------------------------------------------------------------------------*/
  75. - (NSInteger) numberOfPreviewItemsInPreviewController: (QLPreviewController *) controller
  76. {
  77. return [arrayOfDocuments count];
  78. }
  79. /*---------------------------------------------------------------------------
  80. *
  81. *--------------------------------------------------------------------------*/
  82. - (id <QLPreviewItem>)previewController: (QLPreviewController *)controller previewItemAtIndex:(NSInteger)index
  83. {
  84. // Break the path into it's components (filename and extension)
  85. NSArray *fileComponents = [[arrayOfDocuments objectAtIndex: index] componentsSeparatedByString:@"."];
  86. // Use the filename (index 0) and the extension (index 1) to get path
  87. NSString *path = [[NSBundle mainBundle] pathForResource:[fileComponents objectAtIndex:0] ofType:[fileComponents objectAtIndex:1]];
  88. return [NSURL fileURLWithPath:path];
  89. }
  90. #pragma mark -
  91. #pragma mark Cleanup
  92. /*---------------------------------------------------------------------------
  93. *
  94. *--------------------------------------------------------------------------*/
  95. - (void)dealloc
  96. {
  97. // Free up all the documents
  98. [arrayOfDocuments release];
  99. [super dealloc];
  100. }
  101. @end

修改Appdelegate如下

  1. - (void)applicationDidFinishLaunching:(UIApplication *)application
  2. {
  3. // Create and initialize the window
  4. window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
  5. // Create test view controller
  6. vc = [[TestViewController alloc] init];
  7. // Create navigation controller
  8. nav = [[UINavigationController alloc] initWithRootViewController:vc];
  9. [window addSubview:[nav view]];
  10. [window makeKeyAndVisible];
  11. }

所要的资源文件可以源码中找到。

iOS文档预览功能教程的更多相关文章

  1. 一文带你玩转对象存储COS文档预览

    随着"互联网+"的发展,各行各业纷纷"去纸化",商务合同.会议纪要.组织公文.商品图片.培训视频.学习课件.随堂讲义等电子文档无处不在.而要查看文档一般需要先下 ...

  2. 秒级接入、效果满分的文档预览方案——COS文档预览

    一.导语 ​ 说起 Microsoft Office 办公三件套,想必大家都不会陌生,社畜日常的工作或者生活中,多多少少遇到过这种情况: 本地创建的文档换一台电脑打开,就出现了字体丢失.排版混乱的情况 ...

  3. 在线文档预览方案-office web apps续篇

    上一篇在线文档预览方案-office web apps发布后收到很多网友的留言提问,所以准备再写一篇,一来介绍一下域控服务器安装,总结一下大家问的多的问题,二来宣传预览服务安装与技术支持的事情. 阅读 ...

  4. 在线文档预览方案-office web apps

    最近在做项目时,要在手机端实现在线文档预览的功能.于是百度了一下实现方案,大致是将文档转换成pdf,然后在通过插件实现预览.这些方案没有具体实现代码,也没有在线预览的地址,再加上项目时间紧迫.只能考虑 ...

  5. [转载]在线文档预览方案-Office Web Apps

    最近在做项目时,要在手机端实现在线文档预览的功能.于是百度了一下实现方案,大致是将文档转换成pdf,然后在通过插件实现预览.这些方案没有具体实现代码,也没有在线预览的地址,再加上项目时间紧迫.只能考虑 ...

  6. 微软office web apps 服务器搭建之在线文档预览(一)

    office web apps安装 系统要求为Windows Server 2012, 注意:转换文档需要两台服务器,一台为转换server,另外一台为域控server.(至于为什么要两台,这个请自行 ...

  7. 使用OpenOffice实现文档预览

    概述 使用OpenOffice将 office文档转为pdf,然后再将pdf转为图片,实现文档预览的功能. 依赖组件 OpenOffice.org或者LibreOffice JODConverter ...

  8. 微软office web apps 服务器搭建之在线文档预览(二)

    上一篇文章已经介绍了整个安装过程了.只要在浏览器中输入文档转换server的ip,会自动跳转,出现如下页面. 那么就可以实现本地文档预览了,你可以试试.(注意:是本地哦,路径不要写错,类似“\\fil ...

  9. 解决officeOnline文档预览服务器只能域名提交的限制Redirect

    此项目是解决officeOnline文档预览只能用域名提交的限制 http://officeOnline文档预览域名或IP/op/generate.aspx // 微软原生页面 创建链接后会生成全屏预 ...

随机推荐

  1. CF501D Misha and Permutations Summation(康托展开)

    将一个排列映射到一个数的方法就叫做康托展开.它的具体做法是这样的,对于一个给定的排列{ai}(i=1,2,3...n),对于每个ai求有多少个aj,使得j>i且ai>aj,简单来说就是求a ...

  2. Codeforces 777D Cloud of Hashtags(贪心)

    题目链接 Cloud of Hashtags 题目还是比较简单的,直接贪心,但是因为我有两个细节没注意,所以FST了: 1.用了cin读入,但是没有加 std::ios::sync_with_stdi ...

  3. perl learning

    Perl 中文教程 http://cn.perlmaven.com/perl-tutorial learning perl in about 2 hours 30 minutes http://qnt ...

  4. 线程安全的单例模式还需要对成员变量的set get方法设置锁么

    不需要,线程安全的单例模式,在获得对象时已经加锁了,保证每时每刻只有一个线程获得此单例对象.所以不需要再上锁了啊

  5. HDU1969

    记得用PI=acos(-1)反三角函数求,用一次排序,然后二分和贪心 #include<iostream> #include<algorithm> #include<io ...

  6. C# 中的结构类型(struct type)

    ylbtech- .NET-Basic:C# 中的结构类型(struct type) C# 中的结构类型(struct type) 1.A,相关概念返回顶部   像类一样,结构(struct)是能够包 ...

  7. 如何在IIS7上配置 FTP7并使用IIS管理凭据方式进行验证

    在 Windows Server 2008 R2 发布后,gOxiA 就开始着手于相关的测试和评估.IIS 是重点测试和评估之一!而今天与大家分享的是如何在  IIS7 上配置 FTP7 使用 IIS ...

  8. oracle软件安装完毕之后,如何创建数据库

    oracle软件安装完毕之后,如何创建数据库 学习了:https://zhidao.baidu.com/question/1800966379896476147.html 使用了Database Co ...

  9. VC++动态链接库(DLL)编程深入浅出(三)

    前面我们对非MFC DLL进行了介绍,这一节将详细地讲述MFC规则DLL的创建与使用技巧. 另外,自从本文开始连载后,收到了一些读者的e-mail.有的读者提出了一些问题,笔者将在本文的最后一次连载中 ...

  10. Java面向对象编程(二)

    上一篇博文里总结了面向对象三大特性在Java中的体现.如今谈一谈Java中的抽象类,接口,内部类等特性. 一. 抽象类 public abstract class Shape { public int ...