didStartSending(_:conversation:)
Invoked when the user sends a message object.
Declaration
func didStartSending(_ message: MSMessage, conversation: MSConversation)Parameters
- message:
The message being sent.
- conversation:
The conversation that the user is currently viewing in the Messages app.
Mentioned in
Discussion
Override this method to respond when the user sends an MSMessage object. This method is called if you use the conversation’s insert(_:completionHandler:) method to add an MSMessage object to the Messages app’s input field, and the user taps Send. It does not guarantee that the message will be successfully sent or delivered.
The system does not call this method if the controller’s presentationStyle property is MSMessagesAppPresentationStyle.transcript, or if its presentationContext property is MSMessagesAppPresentationContext.media.