UIDocumentInteractionControllerDelegate проверяет, когда документ загружен
Какая функция делегата UIDocumentInteractionControllerDelegate
вызывается, когда документ полностью загружен при предварительном просмотре?
Просто чтобы поделиться, я уже попробовал:
- (void)documentInteractionControllerDidEndPreview:(UIDocumentInteractionController *)controller
И это называется, когда мы закрываем предварительный просмотр.
1 ответ
Решение
Это немного обходной путь, поскольку, насколько я могу судить, в документации нет обработчика завершения для этого.
-(void)presentDocument:(NSURL*)url{
UIDocumentInteractionController *docInteration = [UIDocumentInteractionController interactionControllerWithURL:url];
docInteration.UTI = @"com.adobe.pdf";
docInteration.delegate = self;
[docInteration presentPreviewAnimated:YES];
}
-(void)documentInteractionControllerDidEndPreview: (UIDocumentInteractionController *)controller{
[self.navigationController dismissViewControllerAnimated:NO completion:nil];
}
- (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller{
UIViewController * vc = [[UIViewController alloc]init];
[self.navigationController presentViewController:vc
animated:YES
completion:^{
//This is ran once the document animation has completed
}];
return vc;
}
Надеюсь это поможет.
Люк