根据文档:
@method insertAttachment:withAlternateFilename:completionHandler:
@abstract The NSURL instance provided in the URL parameter is inserted into the Messages.app
input field. This must be a file URL.
@param URL The URL to the media file to be inserted.
@param filename If you supply a string here, the message UI uses it for the attachment. Use an alternate filename to better describe the attachment or to make the name more readable.
@param completionHandler A completion handler called when the insert is complete.
*/
open func insertAttachment(_ URL: URL, withAlternateFilename filename: String?, completionHandler: (@escaping (Error?) -> Swift.Void)? = nil)
它说的地方
文件名 ---> 如果您在此处提供字符串,则消息 UI 将其用于附件。使用备用文件名来更好地描述附件或使名称更具可读性。
我的代码是:
if let conversation = activeConversation {
conversation.insertAttachment(fileURL, withAlternateFilename: "This is file Description.", completionHandler: nil)
}
但它没有显示在消息应用程序的任何地方。
我在这里发送视频文件。
当用户单击消息时,我想在导航栏标题上显示该描述或在MSMessage
可能的情况下显示该描述。