我正在從在線服務器下載PDF文件並將其保存到我的應用程序的沙箱,然後在iBooks中查看它。Objective C:在iBooks上打開PDF文件
iBooks查看是我現在正在掙扎。 我試過這段代碼:
UIDocumentInteractionController *docController = [UIDocumentInteractionController interactionControllerWithURL:url];
docController.delegate = self;
[docController presentOpenInMenuFromRect:savePDF.frame inView:self.view animated:YES];
[docController dismissMenuAnimated:YES];
還是GOR沒有機會,它正在運行,但酥料餅被解僱馬上就被提出了。但是當我刪除[docController dismissMenuAnimated:YES];
它給我一個錯誤說'-[UIPopoverController dealloc] reached while popover is still visible.'
可能是什麼問題?
您需要掛在實例變量中的docController引用上,直到完成顯示。 – borrrden 2013-05-14 07:38:27
@borrrden我將如何做到這一點? – 2013-05-14 07:45:23