UIDocumentInteractionControllerDelegate - 旧版操作方法

时间:2014-08-26 13:32:53

标签: ios8

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

UIDocumentInteractionControllerDelegate implements legacy action methods. Please remove them.

有什么建议吗?

1 个答案:

答案 0 :(得分: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);

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