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];
}