iMessage App

iMessage App

An App is a type of application within Apple's Messages app that allows users to interact with various services or perform tasks directly within their conversations, while an Extension is a feature that developers can use to extend the capabilities of their existing apps to integrate with the app, enabling users to access specific functionalities of the app within the interface.

swift
override func didBecomeActive(with conversation: MSConversation)
    super.didBecomeActive(with: conversation)
    if let message = conversation.selectedMessage {
        updateUiForSelectedMessage(message)
    } else {
        updateUiForManualOpening()
    }
}
Backlinks3