文件查看 UIDocumentInteractionController

UIDocumentInteractionController是從iOS 3.2的SDK開始支持的阁最,它是直接繼承的NSObject,而不是我們想象的UIViewController弥臼。

基礎(chǔ)操作

在當前“視圖控制器”里面:

NSString *cachePath = [[NSBundle mainBundle] pathForResource:@"民族" ofType:@"xlsx"]; 
NSURL * pathUrl = [NSURL fileURLWithPath:cachePath];//文件路徑
UIDocumentInteractionController *documentController = [UIDocumentInteractionController interactionControllerWithURL:pathUrl];
documentController.delegate = self;

[documentController presentPreviewAnimated:YES];//跳轉(zhuǎn)到查看頁面



#pragma mark - UIDocumentInteractionControllerDelegate
-(UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller{
    return self;
}
-(UIView *)documentInteractionControllerViewForPreview:(UIDocumentInteractionController *)controller{
    return self.view;
}
-(CGRect)documentInteractionControllerRectForPreview:(UIDocumentInteractionController *)controller{
    return self.view.bounds;
}
//-(void)documentInteractionController:(UIDocumentInteractionController *)controller willBeginSendingToApplication:(NSString *)application {
//    NSLog(@"%@",controller);
//}
//-(void)documentInteractionController:(UIDocumentInteractionController *)controller didEndSendingToApplication:(NSString *)application {
//    NSLog(@"%@",controller);
//}
//-(void)documentInteractionControllerDidDismissOpenInMenu:(UIDocumentInteractionController *)controller {
//    NSLog(@"%@",controller);
//}




??“支持類型”的展示例子:


播放音樂
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);//文件路徑
NSString *docDir_Str = [paths objectAtIndex:0];
NSString *doc_PathStr = [docDir_Str stringByAppendingString:@"/localFile"];

//直接打開
fullFileNameStr = @"心跳(原味版)-于文文.mp3";
NSString * filePathStr = [doc_PathStr stringByAppendingPathComponent:fullFileNameStr];
NSURL * fileUrl = [NSURL fileURLWithPath:filePathStr];
UIDocumentInteractionController *documentController =  [UIDocumentInteractionController interactionControllerWithURL:fileUrl];
documentController.delegate = self;
//跳轉(zhuǎn)到文檔查看頁面
[documentController presentPreviewAnimated:YES];

播放音樂,效果:



播放視頻
fullFileNameStr = @"11111.mp4";

播放視頻舱呻,效果:



文檔查看
fullFileNameStr = @"民族.xlsx";

文檔查看醋火,效果:


圖片查看
fullFileNameStr = @"chx.jpg";

圖片查看悠汽,效果:

其文件查看非常強大,支持很多類型芥驳!




??“文檔操作”例子
在自己App里面柿冲,對文檔 進行操作:(可自動檢測可進行分享的App)






打開 第三方App里面的文檔

當我們需要打開 在 第三方App里面的文檔時,可以在“info.plist”中添加鍵值對來搞定這個問題:


Source Code格式

<key>CFBundleDocumentTypes</key>
<array>
   <dict>
       <key>CFBundleTypeName</key>          <!--類型名-->
       <string>pdf</string>                 <!--隨意取名字-->
       <key>CFBundleTypeIconFiles</key>     <!--類型文件的icon圖-->
       <array>
           <string>MySmallIcon.png</string>
           <string>MyLargeIcon.png</string>
       </array>
       <key>LSItemContentTypes</key>        <!--所關(guān)聯(lián)的UTI格式兆旬,一個類型名可以對應多個UTI-->
       <array>
           <string>com.adobe.pdf</string>
       </array>
       <key>LSHandlerRank</key>             <!--是不是app所擁有的類型假抄,Default:不是,Owner:是-->
       <string>Owner</string>
   </dict>
</array>


在以下鏈接中丽猬,有文件后綴UTI(統(tǒng)一類型標識符) 的對應表:
https://developer.apple.com/library/mac/#documentation/Miscellaneous/Reference/UTIRef/Articles/System-DeclaredUniformTypeIdentifiers.html


“info.plist”修改實例:(“Property List”格式)


如何導入文檔:

當我們從其他的App宿饱,用“readerApp”打開文檔時,會調(diào)用“readerApp”的方法脚祟!
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { }

其中谬以,url對應的就是該文檔位置
實際在此時由桌,該文檔已經(jīng)復制到“readerApp”的“document/inbox”文件夾下为黎。
我們需要將該文檔移動到其他位置,因為每次其他應用調(diào)用“readerApp”打開該文檔時行您,都會在inbox文件夾下復制一份文件(不考慮該文件是否已經(jīng)存在)铭乾,如果多次使用,那么inbox將會占用大量的存儲空間娃循。

總結(jié):記得在移動了文檔后炕檩,要刪除掉inbox路徑里面的內(nèi)容












自己的文檔閱讀APP 書寫??:

1.在“info.plist”里面捌斧,添加可以支持的所有類型:(“Source Code格式:)

<key>CFBundleDocumentTypes</key>
<array>
    <dict>
        <key>CFBundleTypeName</key>
        <string>com.myapp.common-data</string>
        <key>LSItemContentTypes</key>
        <array>        <!--羅列了 支持的類型-->
            <string>com.microsoft.powerpoint.ppt</string>
            <string>public.item</string>
            <string>com.microsoft.word.doc</string>
            <string>com.adobe.pdf</string>
            <string>com.microsoft.excel.xls</string>
            <string>public.image</string>
            <string>public.content</string>
            <string>public.composite-content</string>
            <string>public.archive</string>
            <string>public.audio</string>
            <string>public.movie</string>
            <string>public.text</string>
            <string>public.data</string>
        </array>
    </dict>
</array>

這樣笛质,其他應用程序的文檔在使用第三方打開的時候,就可以看到你的應用程序了捞蚂。

對應的“Property List格式:


文檔查看操作

點擊該文檔经瓷,打開
對文檔,進行操作


添加可支持的類型之前 添加可支持的類型之后
無 自己的App洞难,可供選擇
有 自己的App,可供選擇




反復導入文檔:

每次導入揭朝,都會在inbox文件夾下復制一份文件队贱。
所以出現(xiàn)了:名稱后面文檔 命名為“-3”的情況




解決操作

導入文檔后,不管是否保存在本地潭袱,都要刪除Inbox 面的文件

//fileNameStr:文件名  (導入所產(chǎn)生文檔所在的Url 獲取來的)
NSString * fileNameStr = [_docUrl lastPathComponent];

NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString * docDir_Str = [paths objectAtIndex:0];//沙盒文檔路徑

//刪除文件的路徑
NSString * deleteDocPath = [[docDir_Str stringByAppendingPathComponent:@"Inbox"] stringByAppendingPathComponent:fileNameStr];
//刪除Inbox里面的文件
[[NSFileManager defaultManager] removeItemAtPath:deleteDocPath error:nil]; 




2.文檔導入操作

全局變量:NSURL * _docUrl;//文檔Url

/** 文檔導入 */
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {  
      if (self.window) { 
          if (url) {
              _docUrl = url;
              NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
              NSString *docDir_Str = [paths objectAtIndex:0];
              NSString *pathStr = [docDir_Str stringByAppendingString:@"/localFile"];
              NSFileManager * fileManager = [NSFileManager defaultManager];
              if(![fileManager fileExistsAtPath:pathStr]){
                  //如果不存在,則說明是第一次運行這個程序柱嫌,那么建立這個文件夾
                  NSString *directryPath = [docDir_Str stringByAppendingPathComponent:@"localFile"];
                  [fileManager createDirectoryAtPath:directryPath withIntermediateDirectories:YES attributes:nil error:nil];
              }
            

              //提醒視圖: UIActionSheet
              UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"是否需要保存文檔?" delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:@"確認" otherButtonTitles:nil];
              [actionSheet showInView:self.window.rootViewController.view];


              //在NSUserDefaults里:保存“從文檔進入App”為YES
              [User_Def setBool:YES forKey:JoinAPPFromDocumVC]; 
              [User_Def synchronize];
            
              //跳轉(zhuǎn)屯换,查看文檔
              UIDocumentInteractionController *documentController =  [UIDocumentInteractionController interactionControllerWithURL:url];
              documentController.delegate = self;
              [documentController presentPreviewAnimated:YES];//跳轉(zhuǎn)到查看頁面
          }
     }

}


3.文檔查看UIDocumentInteractionControllerDelegate

#pragma mark - UIDocumentInteractionControllerDelegate
-(UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller{
    return self.window.rootViewController;
}
-(UIView *)documentInteractionControllerViewForPreview:(UIDocumentInteractionController *)controller{
    return self.window.rootViewController.view;
}
-(CGRect)documentInteractionControllerRectForPreview:(UIDocumentInteractionController *)controller{
    return self.window.rootViewController.view.bounds;
}
//-(void)documentInteractionController:(UIDocumentInteractionController *)controller willBeginSendingToApplication:(NSString *)application {
//    NSLog(@"%@",controller);
//}
//-(void)documentInteractionController:(UIDocumentInteractionController *)controller didEndSendingToApplication:(NSString *)application {
//    NSLog(@"%@",controller);
//}
//-(void)documentInteractionControllerDidDismissOpenInMenu:(UIDocumentInteractionController *)controller {
//    NSLog(@"%@",controller);
//}




4.提醒視圖:UIActionSheetDelegate
以及
5.保存操作

#pragma mark - UIActionSheetDelegate
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    NSLog(@"ACActionSheet delegate - %ld",buttonIndex);

    if (buttonIndex == 0) { //是否考慮 保存
        NSFileManager * fileManager = [NSFileManager defaultManager];
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *docDir_Str = [paths objectAtIndex:0];
        NSString *pathStr = [docDir_Str stringByAppendingString:@"/localFile"];
        NSDirectoryEnumerator *enumerator = [fileManager enumeratorAtPath:pathStr];//遍歷
    
    
        NSArray *fileList = [NSArray arrayWithArray:[fileManager contentsOfDirectoryAtPath:pathStr error:nil]];
        if (fileList.count == 0) { //個數(shù)為0
            NSString * fileNameStr = [_docUrl lastPathComponent];
            NSString * DocPathStr = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/localFile"] stringByAppendingPathComponent:fileNameStr];   //保存的路徑
            NSData * data = [NSData dataWithContentsOfURL:_docUrl];//保存的數(shù)據(jù)
        
            if ([data writeToFile:DocPathStr atomically:YES]) {
                NSString * deleteDocPath = [[docDir_Str stringByAppendingPathComponent:@"Inbox"] stringByAppendingPathComponent:fileNameStr];
                [fileManager removeItemAtPath:deleteDocPath error:nil]; //刪除Inbox里面的文件
            }
        } else {
            for (NSString *fileName in enumerator) {
                NSLog(@"%@",fileName);
                NSString * fileNameStr = [_docUrl lastPathComponent];
                NSString * fileName_total = [fileName componentsSeparatedByString:@" -"][0];
                NSString * fileNameStr_total = [fileNameStr componentsSeparatedByString:@" -"][0];
                if (![fileName_total isEqualToString:fileNameStr_total]) {
                    NSString * DocStr = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/localFile"] stringByAppendingPathComponent:fileNameStr];   //保存的路徑
                    NSData * data = [NSData dataWithContentsOfURL:_docUrl];//保存的數(shù)據(jù)
                
                    if ([data writeToFile:DocStr atomically:YES]) {
                        NSString * deleteDocPath = [[docDir_Str stringByAppendingPathComponent:@"Inbox"] stringByAppendingPathComponent:fileNameStr];
                        [fileManager removeItemAtPath:deleteDocPath error:nil]; //刪除Inbox里面的文件
                    }
                }
            }
        }
    
    } else { //不保存在本地

        //刪除Inbox里面的文件
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *docDir_Str = [paths objectAtIndex:0];
        NSString * fileNameStr = [_docUrl lastPathComponent];
        NSString * deleteDocPath = [[docDir_Str stringByAppendingPathComponent:@"Inbox"] stringByAppendingPathComponent:fileNameStr];
        [[NSFileManager defaultManager] removeItemAtPath:deleteDocPath error:nil];
    }
}




當然编丘,最簡單的 刪除Inbox”里文件操作:

就是 —— 在文檔展示界面消失后与学,再刪除Inbox面的文件

實現(xiàn)代理方法:

- (void)documentInteractionControllerDidEndPreview:(UIDocumentInteractionController *)controller { //結(jié)束 展示文檔
   //(不保存嘉抓,直接刪除) 刪除“Inbox”里面的文件
   NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
   NSString *docDir_Str = [paths objectAtIndex:0];
   NSString * fileNameStr = [_docUrl lastPathComponent];//文件名
   NSString * deleteDocPath = [[docDir_Str stringByAppendingPathComponent:@"Inbox"] stringByAppendingPathComponent:fileNameStr];
   [[NSFileManager defaultManager] removeItemAtPath:deleteDocPath error:nil];

   NSLog(@"%@",controller);
}















goyohol's essay

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末索守,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子抑片,更是在濱河造成了極大的恐慌卵佛,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件敞斋,死亡現(xiàn)場離奇詭異截汪,居然都是意外死亡,警方通過查閱死者的電腦和手機植捎,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評論 3 385
  • 文/潘曉璐 我一進店門衙解,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人焰枢,你說我怎么就攤上這事蚓峦。” “怎么了医咨?”我有些...
    開封第一講書人閱讀 157,435評論 0 348
  • 文/不壞的土叔 我叫張陵枫匾,是天一觀的道長。 經(jīng)常有香客問我拟淮,道長干茉,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,509評論 1 284
  • 正文 為了忘掉前任很泊,我火速辦了婚禮角虫,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘委造。我一直安慰自己戳鹅,他們只是感情好,可當我...
    茶點故事閱讀 65,611評論 6 386
  • 文/花漫 我一把揭開白布昏兆。 她就那樣靜靜地躺著枫虏,像睡著了一般。 火紅的嫁衣襯著肌膚如雪爬虱。 梳的紋絲不亂的頭發(fā)上隶债,一...
    開封第一講書人閱讀 49,837評論 1 290
  • 那天,我揣著相機與錄音跑筝,去河邊找鬼死讹。 笑死,一個胖子當著我的面吹牛曲梗,可吹牛的內(nèi)容都是我干的赞警。 我是一名探鬼主播妓忍,決...
    沈念sama閱讀 38,987評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼愧旦!你這毒婦竟也來了世剖?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,730評論 0 267
  • 序言:老撾萬榮一對情侶失蹤忘瓦,失蹤者是張志新(化名)和其女友劉穎搁廓,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體耕皮,經(jīng)...
    沈念sama閱讀 44,194評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡境蜕,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,525評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了凌停。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片粱年。...
    茶點故事閱讀 38,664評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖罚拟,靈堂內(nèi)的尸體忽然破棺而出台诗,到底是詐尸還是另有隱情,我是刑警寧澤赐俗,帶...
    沈念sama閱讀 34,334評論 4 330
  • 正文 年R本政府宣布拉队,位于F島的核電站,受9級特大地震影響阻逮,放射性物質(zhì)發(fā)生泄漏粱快。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,944評論 3 313
  • 文/蒙蒙 一叔扼、第九天 我趴在偏房一處隱蔽的房頂上張望事哭。 院中可真熱鬧,春花似錦瓜富、人聲如沸鳍咱。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽谤辜。三九已至,卻和暖如春价捧,著一層夾襖步出監(jiān)牢的瞬間每辟,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評論 1 266
  • 我被黑心中介騙來泰國打工干旧, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人妹蔽。 一個月前我還...
    沈念sama閱讀 46,389評論 2 360
  • 正文 我出身青樓椎眯,卻偏偏與公主長得像挠将,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子编整,可洞房花燭夜當晚...
    茶點故事閱讀 43,554評論 2 349

推薦閱讀更多精彩內(nèi)容

  • *面試心聲:其實這些題本人都沒怎么背,但是在上海 兩周半 面了大約10家 收到差不多3個offer,總結(jié)起來就是把...
    Dove_iOS閱讀 27,131評論 30 470
  • 218.241.181.202 wxhl60 123456 192.168.10.253 wxhl66 wxhl6...
    CYC666閱讀 1,369評論 0 6
  • /**ios常見的幾種加密方法: 普通的加密方法是講密碼進行加密后保存到用戶偏好設(shè)置( [NSUserDefaul...
    彬至睢陽閱讀 2,919評論 0 7
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理舔稀,服務發(fā)現(xiàn),斷路器掌测,智...
    卡卡羅2017閱讀 134,633評論 18 139
  • 今天就本周作業(yè)的讀取txt文件查找了的一些方法内贮,如下: //讀取文本內(nèi)容NSError *error;NSStri...
    霏誠拜咬o閱讀 604評論 0 0