文章轉至個人我的博客: https://cainluo.github.io/15132142909284.htmlhtml
衆所周知iOS
是一個封閉的系統, 每一個App
都有一個屬於它們本身的沙盒, App
與App
之間是不能夠互相訪問的, 也因爲這一點, iOS
也能夠被稱爲安全的系統.git
但這又會帶來另外一個問題, 就是在管理文件的方式上比較複雜, 用戶沒法自由的瀏覽文件, 咱們須要專門的工具與流程才能在iOS
上的應用程序之間共享文件.github
爲了解決這個問題, 蘋果爸爸在iOS 11
里加入了一個用於管理文件的新工具:UIDocumentBrowserViewController
.數組
這個全新的視圖控制器可讓咱們建立文檔瀏覽器的App
, 就像iOS 11
上的新的文件App
同樣, 可讓咱們自由管理全部可用位置上的文檔.瀏覽器
PS: 這篇文章所演示的
Demo
在模擬器上是不能正常工做的, 最好備好iOS 11
的設備來構建和測試該App
.安全
轉載聲明:如須要轉載該文章, 請聯繫做者, 而且註明出處, 以及不能擅自修改本文.app
在開始建立這個項目以前, 咱們要了解iOS Document
的工做原理, UIDocument
是一個幾乎運行在全部基於文檔的應用的強大類.異步
UIDocument
是一個物理文件的包裝, 它能夠在咱們的設備, iCloud
上異步讀取/寫入文件, 自動保存, 文件版本控制等等.ide
雖然咱們能夠不用強制性使用UIDocument
, 但我仍是強烈建議去使用, 由於它能夠幫咱們省下不少事情, 好比咱們須要在iPhone
和MacBook
上使用同一個iCloud
文件, UIDocument
就能夠幫咱們處理全部的事情.工具
提供文檔的App
擴展容許其餘App
在你的文件上進行修改, 避免沙盒化.
而UIDocumentPickerViewController
就是該擴展的一部分, 這是其餘App
將顯示你的App
中選擇文檔的可視化界面.
提供文檔的App
容許其餘App
從它自己內導入文件, 這也就說明這個文件會被拷貝一份, 而原始文件則會保持不變.
固然咱們也能夠容許其餘App
直接打開提供文檔的App
, 直接選擇文件進行處理並覆蓋源文件.
這裏咱們就講UIDocumentBrowserViewController
, 它是一種App
的類型, 並非咱們所寫的App
的擴展名.
咱們定製的UIDocumentBrowserViewController
子類必須是App
的根視圖, 換一句話說, 這就是iOS 11
文檔類型App
的自定義實現.
這裏咱們就拿顏色管理來做爲場景, 在文件瀏覽器上去管理這些RGB
顏色值, 它的擴展名也定義爲.color
.
咱們在建立好工程以後, 須要在Info.plist
裏把UISupportsDocumentBrowser
設置爲YES
.
咱們在使用.color
擴展名的文件時, 須要用逗號分隔RGB
顏色值, 好比白色的話, 咱們就會聲明爲255,255,255
.
在此, 若是要使得文檔瀏覽器中支持自定義的.color
擴展名, 咱們須要註冊一個新的贊成類型標識符(UTI這個東西在上一章文章的末尾就有介紹, )
, 而後咱們須要將新的文件與咱們的App
關聯.
打開咱們的項目找到Info
這個選項, 而後把咱們自定義的內容填好:
Exported UTIs
所填寫的內容:
RGB Color File
com.cainluo.colorExtension
UTI
能夠符合其餘類型, 就好像父類子類同樣, 這裏咱們就寫public.text
, 由於咱們的.color
也是簡單的文本類型, 若是你是HTML
的話, 那你能夠寫成public.html
.寫完這個以後, 咱們還須要指定擴展名, 展開Additional exported UTI properties
, 填入一個UTTypeTagSpecification
字典, 而後在這個字典裏建立一個名爲public.filename-extension
的數組, 最後再填入一個color
對象.
定義好這個UTI
以後, 咱們須要在Document Types
填入對應的Name
和Types
, Name
就填入Color Extension
, Types
就填入com.razeware.colorExtension
.
若是你想了解更多關於UTI
的內容, 能夠去apple.co/2v0FiHO看看.
建立好對應的控制器以後, 咱們要設置一下:
self.delegate = self;
self.allowsDocumentCreation = YES;
複製代碼
而後遵照UIDocumentBrowserViewControllerDelegate
和UIViewControllerTransitioningDelegate
兩個協議, 而且實現它們的代理方法:
#pragma mark - UIViewControllerTransitioningDelegate
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented
presentingController:(UIViewController *)presenting
sourceController:(UIViewController *)source {
return self.documentBrowserTransitionController;
}
#pragma mark - UIDocumentBrowserViewControllerDelegate
- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
didRequestDocumentCreationWithHandler:(void(^)(NSURL *_Nullable urlToImport, UIDocumentBrowserImportMode importMode))importHandler {
NSURL *url = [[NSBundle mainBundle] URLForResource:@"ColorFile"
withExtension:@"color"];
importHandler(url, UIDocumentBrowserImportModeCopy);
}
- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
didImportDocumentAtURL:(NSURL *)sourceURL
toDestinationURL:(NSURL *)destinationURL {
[self presentColorControllerWithDocument:[[ColorDocument alloc] initWithFileURL:destinationURL]];
}
- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
failedToImportDocumentAtURL:(NSURL *)documentURL
error:(NSError * _Nullable)error {
[self showAlertViewControllerWithTitle:@"Failed" message:@"Failed to import"];
}
- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
didPickDocumentURLs:(NSArray <NSURL *> *)documentURLs {
[self presentColorControllerWithDocument:[[ColorDocument alloc] initWithFileURL:documentURLs[0]]];
}
- (NSArray<__kindof UIActivity *> *)documentBrowser:(UIDocumentBrowserViewController *)controller
applicationActivitiesForDocumentURLs:(NSArray <NSURL *> *)documentURLs {
ColorDocument *colorDocument = [[ColorDocument alloc] initWithFileURL:documentURLs[0]];
return @[[[DocumentActivity alloc] initDocumentActivityWithColorDocument:colorDocument]];
}
複製代碼
另外咱們還須要配置一些東西, 而且使得能夠跳轉到咱們須要跳轉的編輯頁面:
#pragma mark - Present Controller
- (void)presentColorControllerWithDocument:(ColorDocument *)colorDocument {
UIStoryboard *mineStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
ColorController *colorController = [mineStoryboard instantiateViewControllerWithIdentifier:@"ColorController"];
colorController.colorDocument = colorDocument;
colorController.transitioningDelegate = self;
self.documentBrowserTransitionController = [self transitionControllerForDocumentURL:colorDocument.fileURL];
[self presentViewController:colorController animated:YES completion:nil];
}
複製代碼
解釋一下代理方法:
- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
didImportDocumentAtURL:(NSURL *)sourceURL
toDestinationURL:(NSURL *)destinationURL;
複製代碼
ColorDocument
對象, 而ColorDocument
又是UIDocument
的子類, 負責保存和加載色彩文件, 待會咱們就會ColorController
裏預覽和編輯顏色文件.- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
didRequestDocumentCreationWithHandler:(void(^)(NSURL *_Nullable urlToImport, UIDocumentBrowserImportMode importMode))importHandler;
複製代碼
importHandler
回調中傳遞的文件時.- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
failedToImportDocumentAtURL:(NSURL *)documentURL
error:(NSError * _Nullable)error;
複製代碼
UIDocumentBrowserViewController
支持打開多個文件, 但咱們這裏只須要使用一個, 因此就只去第一個.- (void)documentBrowser:(UIDocumentBrowserViewController *)controller
didPickDocumentURLs:(NSArray <NSURL *> *)documentURLs;
複製代碼
打開ColorController
以後, 咱們須要設置一下, 看看是否能夠讀取對應的文件:
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
ColorDocument *colorDocument = self.colorDocument;
if (!colorDocument) {
return;
}
if (colorDocument.documentState == UIDocumentStateNormal) {
[self configControllerUI];
} else {
[colorDocument openWithCompletionHandler:^(BOOL success) {
if (success) {
[self configControllerUI];
} else {
[self showAlertViewControllerWithTitle:@"Error"
message:@"Can't Open Document"];
}
}];
}
}
複製代碼
爲了能夠保存修改後的內容, 這裏用了一個保存的方法:
- (IBAction)saveColorModel:(UIButton *)sender {
ColorDocument *colorDocument = self.colorDocument;
if (!colorDocument) {
return;
}
colorDocument.colorModel = [[ColorModel alloc] initColorModelWithRedValue:self.redSlider.value
greenValue:self.greenSlider.value
blueValue:self.blueSlider.value];
[colorDocument saveToURL:colorDocument.fileURL
forSaveOperation:UIDocumentSaveForOverwriting
completionHandler:^(BOOL success) {
if (success) {
[self showAlertViewControllerWithTitle:@"Success"
message:@"Saved file"];
} else {
[self showAlertViewControllerWithTitle:@"Error"
message:@"Failed to save file"];
}
}];
}
複製代碼
若是咱們直接從文件App
中打開顏色文件, 你會發現咱們的App
是打開了, 但不會工做.
那是由於咱們的App
和.color
擴展名關聯, 但咱們的編輯頁面並無顯示.
因爲這個文件是在別的App
裏打開的, 因此咱們須要在AppDelegate
裏處理這個事情:
- (BOOL)application:(UIApplication *)app
openURL:(NSURL *)url
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
if (!url.isFileURL) {
return NO;
}
DocumentBrowserController *documentBrowserController = (DocumentBrowserController *)self.window.rootViewController;
if (!documentBrowserController) {
return NO;
}
[documentBrowserController revealDocumentAtURL:url
importIfNeeded:YES
completion:^(NSURL * _Nullable revealedDocumentURL, NSError * _Nullable error) {
if (error) {
return;
}
[documentBrowserController presentColorControllerWithDocument:[[ColorDocument alloc] initWithFileURL:revealedDocumentURL]];
}];
return YES;
}
複製代碼
在這裏面咱們還能夠自定義一下咱們的文檔瀏覽器樣式:
#pragma mark - Custom Document Browser Controller
- (void)customDocumentBrowserController {
self.view.tintColor = [UIColor colorNamed:@"MarineBlue"];
self.browserUserInterfaceStyle = UIDocumentBrowserUserInterfaceStyleLight;
UIDocumentBrowserAction *documentBrowserAction = [[UIDocumentBrowserAction alloc] initWithIdentifier:@"com.cainluo.action"
localizedTitle:@"Lighter Color"
availability:UIDocumentBrowserActionAvailabilityMenu
handler:^(NSArray<NSURL *> * _Nonnull urls) {
ColorDocument *colorDocument = [[ColorDocument alloc] initWithFileURL:urls[0]];
[colorDocument openWithCompletionHandler:^(BOOL success) {
if (success) {
colorDocument.colorModel = [colorDocument.colorModel lighterColorWithToAdd:60];
[self presentColorControllerWithDocument:colorDocument];
}
}];
}];
documentBrowserAction.supportedContentTypes = @[@"com.cainluo.colorExtension"];
self.customActions = @[documentBrowserAction];
UIBarButtonItem *aboutButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"About"
style:UIBarButtonItemStylePlain
target:self
action:@selector(openAbout)];
self.additionalTrailingNavigationBarButtonItems = @[aboutButtonItem];
}
- (void)openAbout {
[self showAlertViewControllerWithTitle:@"關於咱們" message:@"Color Document 1.0 by Cain Luo"];
}
複製代碼
這個顏色值是設置在Assets.xcassets
中.
咱們能夠爲演示文稿添加一個動畫:
@property (nonatomic, strong) UIDocumentBrowserTransitionController *documentBrowserTransitionController;
複製代碼
#pragma mark - UIViewControllerTransitioningDelegate
- (nullable id <UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented
presentingController:(UIViewController *)presenting
sourceController:(UIViewController *)source {
return self.documentBrowserTransitionController;
}
複製代碼
咱們剛剛的那個present
方法裏就寫好了對應的配置:
colorController.transitioningDelegate = self;
self.documentBrowserTransitionController = [self transitionControllerForDocumentURL:colorDocument.fileURL];
複製代碼
最後面咱們還能夠添加多一個活動列表, 這個時候咱們就須要定義一個UIActivity
的自雷, 而且將.color
文件以字符串的形式複製到粘貼板上:
- (instancetype)initDocumentActivityWithColorDocument:(ColorDocument *)colorDocument {
self = [super init];
if (self) {
self.colorDocument = colorDocument;
}
return self;
}
+ (UIActivityCategory)activityCategory {
return UIActivityCategoryAction;
}
- (UIActivityType)activityType {
return @"ColorBrowserCopy";
}
- (NSString *)activityTitle {
return @"Color Copy";
}
- (UIImage *)activityImage {
return [UIImage imageNamed:@"copy_activity_icon"];
}
- (BOOL)canPerformWithActivityItems:(NSArray *)activityItems {
return YES;
}
- (void)performActivity {
[self.colorDocument openWithCompletionHandler:^(BOOL success) {
if (success) {
NSString *string = [self.colorDocument stringRepresentation];
if (string) {
[UIPasteboard generalPasteboard].string = string;
[self activityDidFinish:YES];
}
}
}];
}
複製代碼
最後咱們用一個代理方法設置對應的活動事件:
#pragma mark - Custom Activity
- (NSArray<__kindof UIActivity *> *)documentBrowser:(UIDocumentBrowserViewController *)controller
applicationActivitiesForDocumentURLs:(NSArray <NSURL *> *)documentURLs {
ColorDocument *colorDocument = [[ColorDocument alloc] initWithFileURL:documentURLs[0]];
return @[[[DocumentActivity alloc] initDocumentActivityWithColorDocument:colorDocument]];
}
複製代碼
https://github.com/CainLuo/iOS-11-Characteristic/tree/master/6.Document