UIDocumentInteractionControllerDelegate-传统操作方法

pha*_*mar 5 ios8

我正在使用UIDocumentInteractionControllerDelegate处理文档的方法。我已经在中打开了文档UIWebview。我正在尝试通过电子邮件与其他用户共享文档。为此,我打电话presentOptionsMenuFromBarButtonItem来显示菜单项。它可以运行到iOS 7版本,但是目前我正在测试iOS8,并在控制台中收到以下消息:

UIDocumentInteractionControllerDelegate implements legacy action methods. Please remove them.

有什么建议么?

Sel*_*vin 2

您至少使用这两种方法中的一种吗?

- (BOOL)documentInteractionController:(UIDocumentInteractionController *)controller canPerformAction:(SEL)action NS_DEPRECATED_IOS(3_2, 6_0);
- (BOOL)documentInteractionController:(UIDocumentInteractionController *)controller performAction:(SEL)action NS_DEPRECATED_IOS(3_2, 6_0);
Run Code Online (Sandbox Code Playgroud)

它们从 6.0 开始已弃用。尽量不要使用它们。