로고조성현

iMessage App

TODO: USE FUMADOCS I18N

An iMessage 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 iMessage conversations, while an iMessage Extension is a feature that developers can use to extend the capabilities of their existing iOS apps to integrate with the Messages app, enabling users to access specific functionalities of the app within the iMessage interface.

iMessage 앱은 사용자가 다양한 서비스와 상호 작용하거나 iMessage 대화 내에서 직접 작업을 수행할 수 있는 Apple메시지 앱 내 애플리케이션 유형이며, iMessage 확장 프로그램은 개발자가 기존 iOS 앱의 기능을 확장하여 메시지 앱과 통합하는 데 사용할 수 있는 기능으로, 사용자가 iMessage 인터페이스 내에서 앱의 특정 기능에 액세스할 수 있게 해준다.

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