在UIDocumentINteractionController中自动选择目标应用程序,而不显示可用的应用程序

时间:2014-05-21 09:04:12

标签: ios audio share uidocumentinteraction socialshare

我正在开发和App与Whatsapp共享音频文件。因为,我只专注于Whatsapp,我对展示VLC或Telegram等其他可用应用并不感兴趣。

我可以选择Whatsapp App来共享文件而不显示选择菜单吗?换句话说,我可以避免presentOpenInMenuFromRect:inView:anmiated:?

1 个答案:

答案 0 :(得分:0)

您需要使用UIDocumentInteractionController UTI:net.whatsapp.audio

Custom URL scheme for whatsApp

  _documentController = [UIDocumentInteractionController interactionControllerWithURL:fileURL];
_documentController.delegate = self;
_documentController.UTI = @"net.whatsapp.audio";
[_documentController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES]
  

触发后,WhatsApp会立即向用户显示联系人/组选择器屏幕。媒体将自动发送到选定的联系人/组。