DocumentInteraction Controllerl的使用

來源:互聯網
上載者:User

iOS提供了使用其他app預覽檔案的支援,這就是Document Interaction Controller。此外,iOS也支援檔案關聯,允許其他程式調用你的app開啟某種檔案。而且,從4.2開始,Quick Look Framework提供了對多種文檔的內建列印。你可以參考DocumentInteraction Controller類參考以及Quick Look Framework指南,以及DocInteraction樣本程式。
 
本文討論了Document InteractionController的使用。
 
-、建立執行個體
 
DocumentInteraction Controller使用靜態方法interactionControllerWithURL建立執行個體,這個方法使用一個NSURL作為參數。
 
代碼:
 
NSURL *url=[NSURL fileURLWithPath:path];
 
controller = [UIDocumentInteractionController  interactionControllerWithURL:url];
 
二、顯示預覽視窗
 
Document Interaction Controller對象使用presentPreviewAnimated方法彈出一個全屏的文檔預覽視窗。
 
代碼:
 
 BOOL b=[controller presentPreviewAnimated:YES];
 
三、顯示菜單
 
如果你不想直接彈出預覽視窗,你可以顯示一個選項菜單給使用者,由使用者選擇相應的操作。顯示菜單可以使用下列方法:
 
–presentOptionsMenuFromRect:inView:animated:
 
–presentOptionsMenuFromBarButtonItem:animated:
 
–presentOpenInMenuFromRect:inView:animated:
 
–presentOpenInMenuFromBarButtonItem:animated:
 
這些方法都是類似的,只是顯示位置有區別而已。以下代碼示範其中一個方法的使用。
 
代碼:
 
CGRect navRect = self.navigationController.navigationBar.frame;
 
navRect.size = CGSizeMake(1500.0f, 40.0f);
 
[controller presentOptionsMenuFromRect:navRect inView:self.view  animated:YES];
 
四、使用委託
 
如果你顯示一個Document Interaction Controller ,則必需要為delegate屬性用指定一個委託。讓委託告訴DocumentInteraction Controller如何顯示。
 
代碼:
 
controller.delegate =self;
 
委派物件需要實現一系列委託方法,最常見的包括:
 
–documentInteractionControllerViewControllerForPreview:
 
–documentInteractionControllerViewForPreview:
 
–documentInteractionControllerRectForPreview:
 
這3個方法在使用者點擊“快速查看”菜單時依次調用。
 
代碼:
 
- (UIViewController*)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController*)controller
 
{
 
return self;
 
}
 
- (UIView*)documentInteractionControllerViewForPreview:(UIDocumentInteractionController*)controller
 
{
 
return self.view;
 
}
 
- (CGRect)documentInteractionControllerRectForPreview:(UIDocumentInteractionController*)controller
 
{
 
return self.view.frame;
 
}
 
// 點擊預覽視窗的“Done”(完成)按鈕時調用
 
- (void)documentInteractionControllerDidEndPreview:(UIDocumentInteractionController*)_controller
 
{
 
    [_controller autorelease];
 
}
 
摘自 kmyhy的專欄

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.