我不知道这部法典有什么错误,但每次在门乌显示坠毁后,我跑了。
NSString * path = [[NSBundle mainBundle] pathForResource:@"tung" ofType:@"doc"];
UIDocumentInteractionController *docController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:path]];
docController.delegate = self;
//[docController presentPreviewAnimated:YES];
CGRect rect = CGRectMake(0, 0, 300, 300);
[docController presentOptionsMenuFromRect:rect inView:self.view animated:YES];
I got:
*** Terminating app due to uncaught exception NSGenericException , reason: -[UIPopoverController dealloc] reached while popover is still visible.
我现在应该做些什么?