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的專欄