iOS开发-选取、浏览和预览本地、共享或者iCloud文件

前言:

最近做了一个项目,需要实现能够选取图片或者word、pdf、txt等文档类型的文件并进行上传,并且能够实现文件的下载和预览功能,以前没有做过相关的功能,所以在网上查找相关资料之后,终于实现了,现分享下浏览和预览文件的实现过程:

一、文件浏览

实现文件浏览有以下两个类:

1、UIDocumentBrowserViewController

这个是用于浏览本地和云中存储的文件并对其执行操作,由于是iOS11之后新出的并没有使用到它,这里就不讲述这个是如何实现的。

2、UIDocumentPickerViewController

我所使用的就是这个类,打破应用沙盒的限制,提供对应用沙盒外的文件或目标的访问。具体代码如下:

创建:

//懒加载
- (UIDocumentPickerViewController *)documentPickerVC {
    if (!_documentPickerVC) {
        /**
         初始化
         
         @param allowedUTIs 支持的文件类型数组
         @param mode 支持的共享模式
         */
        self.documentPickerVC = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:self.documentTypes inMode:UIDocumentPickerModeOpen];
        //设置代理
        _documentPickerVC.delegate = self;
        //设置模态弹出方式
        _documentPickerVC.modalPresentationStyle = UIModalPresentationFormSheet;
    }
    return _documentPickerVC;
}

实现代理方法:

#pragma mark - UIDocumentPickerDelegate

- (void)documentPicker:(UIDocumentPickerViewController *)controller didPickDocumentsAtURLs:(NSArray *)urls {
    //获取授权
    BOOL fileUrlAuthozied = [urls.firstObject startAccessingSecurityScopedResource];
    if (fileUrlAuthozied) {
        //通过文件协调工具来得到新的文件地址,以此得到文件保护功能
        NSFileCoordinator *fileCoordinator = [[NSFileCoordinator alloc] init];
        NSError *error;

        [fileCoordinator coordinateReadingItemAtURL:urls.firstObject options:0 error:&error byAccessor:^(NSURL *newURL) {
            //读取文件
            NSString *fileName = [newURL lastPathComponent];
            NSError *error = nil;
            NSData *fileData = [NSData dataWithContentsOfURL:newURL options:NSDataReadingMappedIfSafe error:&error];
            if (error) {
                //读取出错
            } else {
                //上传
                [self uploadingWithFileData:fileData fileName:fileName fileURL:newURL];
            }

            [self dismissViewControllerAnimated:YES completion:NULL];
        }];
        [urls.firstObject stopAccessingSecurityScopedResource];
    } else {
        //授权失败
    }
}

在代理方法里可以选取得到文件,再进行上传或者其他操作。

文件浏览实现效果图:(由于是模拟器截图,所以没有任何文件,见谅!)
文件浏览效果图1-最近使用.png
文件浏览效果图2-iCloud Drive.png
文件浏览效果图3-浏览.png
PS:

至于图片选取和浏览,大家都比较熟悉,这里就不再废话了。

二、文件预览

文件预览我使用的是UIDocumentInteractionController,这个类可以预览,打开或打印其文件格式无法直接由您的应用程序处理的文件。实现代码如下:

创建对象:

//懒加载
- (UIDocumentInteractionController *)documentInteractionC {
    if (!_documentInteractionC) {
        //初始化
        self.documentInteractionC = [[UIDocumentInteractionController alloc] init];
        //设置代理
        _documentInteractionC.delegate = self;
    }
    return _documentInteractionC;
}

实现代理方法:

#pragma mark - UIDocumentInteractionControllerDelegate
//返回一个视图控制器,代表在此视图控制器弹出
- (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller {
    return self;
}
//返回一个视图,将此视图作为父视图
- (UIView *)documentInteractionControllerViewForPreview:(UIDocumentInteractionController *)controller {
    return self.view;
}
//返回一个CGRect,做为预览文件窗口的坐标和大小
- (CGRect)documentInteractionControllerRectForPreview:(UIDocumentInteractionController *)controller {
    return self.view.frame;
}

得到文件的URL,指定URL并打开预览窗口:

NSURL *URL = self.fileURLArray[indexPath.row];
    if ([URL isFileURL]) {
        if ([[[NSFileManager alloc] init] fileExistsAtPath:URL.path]) {
            //指定预览文件的URL
            self.documentInteractionC.URL = URL;
            //弹出预览文件窗口
            [self.documentInteractionC presentPreviewAnimated:YES];
        } else {
            [SVProgressHUD showErrorWithStatus:@"该文件不存在!"];
        }
    } else {
        if ([URL.scheme containsString:@"http"]) {
            UIAlertController *alertC = [UIAlertController alertControllerWithTitle:@"提示" message:@"不存在本地文件,需要下载,是否下载?" preferredStyle:UIAlertControllerStyleAlert];
            [alertC addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
                //文件存储路径
                NSString *filePathString = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject stringByAppendingPathComponent:URL.absoluteString.lastPathComponent];
                NSURLSessionDownloadTask *downloadTask = [self.manager downloadTaskWithRequest:[NSURLRequest requestWithURL:URL] progress:^(NSProgress * _Nonnull downloadProgress) {
                    
                } destination:^NSURL * _Nonnull(NSURL * _Nonnull targetPath, NSURLResponse * _Nonnull response) {
                    //返回文件存储路径
                    return [NSURL fileURLWithPath:filePathString];
                } completionHandler:^(NSURLResponse * _Nonnull response, NSURL * _Nullable filePath, NSError * _Nullable error) {
                    
                    //下载完成后,替换原来的URL,下次不用再下载,直接打开
                    [self.fileURLArray replaceObjectAtIndex:indexPath.row withObject:filePath];
                    //指定预览文件的URL
                    self.documentInteractionC.URL = filePath;
                    //弹出预览文件窗口
                    [self.documentInteractionC presentPreviewAnimated:YES];
                    
                }];
                [MBProgressHUD showHUDAddedTo:self.view animated:YES];
                MBProgressHUD *hud = [MBProgressHUD HUDForView:self.view];
                hud.label.text = @"正在下载文件";
                //启动下载文件任务
                [downloadTask resume];
            }]];
            [alertC addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
                
            }]];
            [self presentViewController:alertC animated:YES completion:^{
                
            }];
        } else {
            [SVProgressHUD showErrorWithStatus:@"该文件链接不存在!"];
        }
    }
文件预览实现效果图:
文件预览效果图.png

到这里就简单的实现文件的选取、浏览和预览了,如果写得有什么错误的地方,欢迎大家批评指正!

你可能感兴趣的:(iOS开发-选取、浏览和预览本地、共享或者iCloud文件)