0

Я попытался открыть PDF-файл с «Открыть в» меню, но когда я создаю его, крах кода, когда я вызываю метод presentOpenInMenuFromBarButtonItemUIDocumentInteractionController аварии с presentOpenInMenuFromBarButtonItem: метод

UIDocumentInteractionController * controller; 
     controller = [UIDocumentInteractionController interactionControllerWithURL:fileUrl]; 
     controller.delegate = self; 

     [controller presentOpenInMenuFromBarButtonItem:_openInBBItem animated:YES]; 

Там нет ошибки сообщение.

Вы можете мне помочь?

ответ

0

Решение должно содержать ссылку на UIDocumentInteractionController.

.h

@property UIDocumentInteractionController* interact; 

.m

_interact = [UIDocumentInteractionController interactionControllerWithURL: fileUrl]; 
_interact.delegate = self; 
[_interact presentOpenInMenuFromBarButtonItem: _openInBBItem animated:YES];