IOS提供了对各种文档(PDF, PPT, word, txt, jpg等)的浏览功能,这个非常使用,因为我们难免需要app里浏览各种文档。官方的Sample code DocInteraction展示了如何在IOS浏览各种格式的文档。
本Sample非常简单,在tableview里列出了预定的和制定目录下的文档列表,点击某个文档时,能切换view并预览文档内容:
从这个sample里能学到的关键点是:
- 从文件目录中载入文件列表
- 监控文档目录中文件的变动,并实时反馈在UI上
- 预览各种文档内容
IOS提供了NSFileManager来访问文件系统,从以下代码能很清晰地了解到如何通过NSFileManager查询某个目录路径下所有所有文件:
- (void)directoryDidChange:(DirectoryWatcher *)folderWatcher
{
[self.documentURLs removeAllObjects]; // clear out the old docs and start over
NSString *documentsDirectoryPath = [self applicationDocumentsDirectory];
NSArray *documentsDirectoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsDirectoryPath error:NULL];
for (NSString* curFileName in [documentsDirectoryContents objectEnumerator])
{
NSString *filePath = [documentsDirectoryPath stringByAppendingPathComponent:curFileName];
NSURL *fileURL = [NSURL fileURLWithPath:filePath];
BOOL isDirectory;