我正在开发和App与Whatsapp共享音频文件。因为,我只专注于Whatsapp,我对展示VLC或Telegram等其他可用应用并不感兴趣。
我可以选择Whatsapp App来共享文件而不显示选择菜单吗?换句话说,我可以避免presentOpenInMenuFromRect:inView:anmiated:?
答案 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会立即向用户显示联系人/组选择器屏幕。媒体将自动发送到选定的联系人/组。