通过新的 iOS 11 iMessage 键盘应用集成发送文件
Sending files via the new iOS 11 iMessage keyboard app integration
我正在尝试通过新的 iOS 11 iMessage 键盘应用程序集成发送文本文件,如 .txt 文件。那可能吗?
从 API 文档中的 imessage(消息)模板可以看出,有关键盘内应用程序的所有内容在发送时都必须是可视消息。 https://developer.apple.com/documentation/messages/msmessagetemplatelayout
我们可以随时发送文件吗?如果是,它的限制是什么?
您可以在 MSConversation
中发送文件
The MSConversation class represents a conversation in the Messages app. Use conversation objects to access information about the currently selected message or the conversation participants, or to send text, stickers, attachments, or message objects.
使用
insertAttachment :withAlternateFilename:completionHandler: 这会将附件插入消息输入字段
或
sendAttachment :withAlternateFilename:completionHandler: 发送给定 URL.
指定的媒体文件
我正在尝试通过新的 iOS 11 iMessage 键盘应用程序集成发送文本文件,如 .txt 文件。那可能吗?
从 API 文档中的 imessage(消息)模板可以看出,有关键盘内应用程序的所有内容在发送时都必须是可视消息。 https://developer.apple.com/documentation/messages/msmessagetemplatelayout
我们可以随时发送文件吗?如果是,它的限制是什么?
您可以在 MSConversation
中发送文件The MSConversation class represents a conversation in the Messages app. Use conversation objects to access information about the currently selected message or the conversation participants, or to send text, stickers, attachments, or message objects.
使用
insertAttachment :withAlternateFilename:completionHandler: 这会将附件插入消息输入字段
或
sendAttachment :withAlternateFilename:completionHandler: 发送给定 URL.
指定的媒体文件