An Introduction to Building iOS 10 iMessage Apps

PreviousTable of ContentsNext
Receiving Data from an iOS 10 Action ExtensionAn iOS 10 Interactive Message App Tutorial


Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book


In much the same way that photo editing extensions allow custom photo editing capabilities to be added to the standard Photos app, message app extensions allow the functionality of the standard iOS Messages app to be extended and enhanced.

Message app extensions, which were introduced with iOS 10, allow app developers to provide users with creative ways to generate and send custom and interactive messages to their contacts. The possibilities offered by message apps range from simple sticker apps that allow images to be selected from sticker packs and inserted into messages, through to more advanced possibilities such as fully interactive games.

Message app extensions, once created, are made available to customers through the Messages App Store, thereby providing an additional source of potential revenue for app developers.

In this chapter, a basic overview of message app extensions will be provided, together with an outline of how the key classes and methods of the Messages framework combine to enable the creation of message apps. The next chapter, entitled An iOS 10 Interactive Message App Tutorial, will work through the creation of an interactive message app project.

Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book

Introducing Message Apps

Message app extensions (often referred to simply as message apps) are built using the standard iOS extension mechanism with the one significant difference being that a message app extension is not required to have a containing app. Users find and install message apps by browsing the Message App Store, or when they receive a message created using a message app from another user. Once a message app has been installed, it appears within the Messages App Drawer of the Messages app on iOS devices. This app drawer is accessed by tapping the App Store icon located in the Messages app toolbar as highlighted in Figure 89-1:


The iOS Message App Store button

Figure 89-1


When selected, the app drawer appears and displays icons representing the user’s currently installed message apps. Figure 89-2, for example, shows a messages app drawer with three message apps installed and available for use.


Currently installed message app extensions in the messages app drawer

Figure 89-2


When a message app icon is tapped, the app extension is launched and displayed within the app drawer panel. When a message app is displayed, swiping left or right within the drawer scrolls through the different apps currently installed on the device. In Figure 89-3 below the app drawer is displaying a message app that allows animated images to be selected for inclusion in messages. When displayed in the app drawer, the message app is said to be using compact presentation style.


An iOS message app extension running in the messages app drawer

Figure 89-3


The upward pointing arrow (highlighted in Figure 89 3 above) switches the app to expanded presentation style whereby the app user interface fills the entire screen area. Tapping the down arrow in the upper right-hand corner of the expanded presentation view will switch the app back to compact style.

In addition to launching a message app from within the app drawer, selecting a message associated with a message app from the message transcript area will automatically launch the corresponding app in expanded presentation style.

If a user receives a message generated by a message app, but does not currently have that particular app installed, tapping the app icon within the message will take the user to the Messages App Store where the app may be purchased and installed. This is expected to have a viral effect in terms of selling message apps, with customers buying apps in order to be able to interact with messages received from their contacts.

Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book

Types of Message App

iOS currently supports three different types of message app extension. The first is simply a mechanism for providing collections of sticker images (referred to as sticker packs) for inclusion in messages sent by users. The second type of app allows a range of media content (such as text, images, web links and videos) to be inserted into messages. The third, and most powerful option, allows fully interactive message apps to be created. When developing interactive message apps, the full range of iOS frameworks and user interface controls are available when implementing the app, essentially allowing a message app of any level of richness and complexity to be created using the same approach as that taken when developing regular iOS apps.

Since interactive message apps provide the greatest flexibility and opportunities for app developers, this will be the main focus of both this chapter and the tutorial contained in the next chapter of the book.


The Key Messages Framework Classes

In the process of developing a message app, a number of classes provided by the Messages framework will need to be used. Understanding these classes and how they interact is an essential part of learning to develop message apps. In this section, a brief overview of each class and the most commonly used properties and methods of those classes will be outlined.

MSMessagesAppViewController

The MSMessagesAppViewController class is responsible for displaying and managing the message app in both compact and expanded presentation styles. It allows for the presentation of a user interface to the user and provides a bridge between the user interface and the underlying application logic. The class also stores information about the app status via the following properties:

  • activeConversation – Stores the MSConversation object for the currently active conversation.
  • presentationStyle – Contains the current presentation style for the message app (compact or expanded).

Instances of this class also receive the following lifecycle method calls:

  • willBecomeActive – The app is about to become active within the Messages app.
  • didBecomeActive – Called immediately after the app becomes active.
  • willResignActive – The app is about to become inactive.
  • didResignActive – Called after the app has become inactive.
  • willSelect – Called after the user selects a message from the transcript but before the selectedMessage property of the conversation object is updated to reflect the current selection.
  • didSelect – Called after the selectedMessage conversation property has been updated to reflect a message selection made by the user.
  • didReceive – When an incoming message is received for the message app, and the message app is currently active, this method is called and passed corresponding MSMessage and MSConversation objects.
  • didStartSending – Called when the user sends an outgoing message.
  • didCancelSending – Called when the user cancels a message before sending it.
  • willTransition – Called when the app is about to transition from one presentation style to another. Changes to the user interface of the message app to accommodate the presentation style change should be made here if necessary.
  • didTransition – Called when the app has performed a transition between presentation styles.

Since MSMessagesAppViewController is a subclass of UIViewController, the class behaves in much the same way, and also receives the standard lifecycle method calls (such as viewDidLoad, viewWillAppear, viewWillDisappear etc.) as the UIViewController class.

MSConversation

The MSConversation class represents the transcript area of the Messages app when a message app extension is active. This object stores the currently selected message (in the form of an MSMessage object via the selectedMessage property) and provides the following API methods that may be called by the message app to insert messages into the input field of the Messages app:

  • insert – Inserts an MSMessage object or sticker into the input field of the Messages app.
  • insertText – Inserts text into the input field of the Messages app.
  • insertAttachment – Inserts an attachment such as an image or video file into the Messages app input field.

Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book

Once a message has been inserted into the Messages app input field it must then be sent by the user via a tap on the send button. It is not possible for a message app to send a message directly without the user taking this step.

In addition to the methods outlined above, the MSConversation class also contains the following properties:

  • localParticipantIdentifier – Contains the UUID of the user of the local device. Accessing the uuidString property of this item will provide the contact name of the user in a format suitable for display within the message layout.
  • remoteParticipantIdentifiers – Contains an array of UUID objects representing the identities of remote users currently participating in the message app conversation.

MSMessage

The MSMessage class represents individual messages within the Messages app transcript. The key elements of an MSMessage object are as follows:

  • layout – The layout property takes the form of an MSMessageTemplateLayout object which defines how the message is to be displayed within the so-called message bubble in the Messages app transcript area.
  • url – The url property is used to encode the data that is to be sent along with the message. This can be a standard URL that points to a remote server where the data be can downloaded by the receiving app or, for smaller data requirements, the URL itself can be used to encode the data to be transmitted with the message. The latter approach can be achieved using the URLComponents class, a process that is covered in detail in the next chapter entitled An iOS 10 Interactive Message App Tutorial.
  • session – The use of sessions in message apps allow multiple messages to be designated as being part of the same session. Session messages are presented such that only the most recent message in the session is displayed in its entirety, thereby avoiding cluttering the Messages app transcript area with the full rendering of each message.
  • accessibilityLabel – A localized string describing the message suitable for accessibility purposes.
  • senderParticipantIdentifier – The UUID of the user that sent the message.
  • shouldExpire – A Boolean value indicating whether the message should expire after it has been read by the recipient.

MSMessageTemplateLayout

The MSMessageTemplateLayout defines how an MSMessage instance is presented to the user within the transcript area of the Messages app.

When a message contained within an MSMessage object is presented to the user it is displayed within a message bubble. Various aspects of how this message bubble appears can be defined and included within the MSMessage object.

The image, video, titles and subtitles contained within the bubble are configured using an MSMessageTemplateLayout instance which is then assigned to the layout property of the MSMessage instance. Diagram Figure 89-4, provides a graphical rendering of an MSMessage-based message bubble with each of the configurable layout properties labelled accordingly:


Diagram of configurable elements of MSMessageTemplateLayout

Figure 89-4


The settings in the above diagram correlate to the following properties of the MSMessageTemplateLayout class:

  • image – The image to be displayed in the image area of the message. The recommended image size is 300pt x 300pt and the Messages framework will automatically scale the image for different display sizes. To avoid rendering issues, it is recommended that text not be included in the image.
  • mediaFileURL – The URL of a media file to be displayed in the image (such as a video or animated image file).
  • imageTitle – The text to display in the Image Title location .
  • imageSubtitle – The text to appear in the Image Subtitle location.
  • caption – Text to appear in the Caption location.
  • subCaption – Text to appear in the Subcaption location.
  • trailingCaption - Text to appear in the Trailing Caption location.
  • trailingSubcaption – Text to appear in the Trailing Subcaption location.

Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book

Sending Simple Messages

To send simple text, sticker and image messages it is not necessary to create an MSMessage object. The first step is to obtain a reference to the currently active conversation. From within an MSMessagesAppViewController instance, the currently active conversation can be obtained via the activeConversation property:

let conversation = self.activeConversation

The next step is to make a call to the appropriate method of the active conversation instance. To send a text message, for example, the code might read as follows:

let conversation = self.activeConversation
conversation?.insertText("Message Text Here") { error in
	// Handle errors
}

Once the above code is executed, the designated text will appear in the Messages app input field ready to be sent by the user:


An iOS 10 Message App Extension text input

Figure 89-5


Similarly, an attachment may be sent using the insertAttachment method call, passing through a URL referencing the file to be attached to the message:

let conversation = self.activeConversation
conversation?.insertAttachment(myURL, withAlternateFilename: nil) { error in
	// Handle errors
}

Creating an MSMessage Message

In order to send an interactive message, it is necessary to use the MSMessage class. The first step, once again, is to obtain a reference to the currently active conversation:

let conversation = self.activeConversation

Next, a new MSMessage instance needs to be created within which to place the message content:

let message = MSMessage()

If the message is to be associated with a specific session, the message would be created as follows:

let session = MSSession()
let message = MSMessage(session: session)

In the above example, a newly created session object is being assigned to the message. If this message were being created in response to an incoming message that already had a session allocation, the session object from the incoming message would be used instead.

Once the message instance has been created, the layout needs to be configured using an MSMessageTemplateLayout instance. For example:

let layout = MSMessageTemplateLayout()
layout.imageTitle = "My Image Title"
layout.caption = "A Message Caption"
layout.subcaption = "A message subcaption”
layout.image = myImage

Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book

Once the layout has been defined it needs to be assigned to the MSMessage object:

message.layout = layout

Next, a url needs to be assigned containing the data to be passed along with the message, for example:

message.url = myUrl

Once the message has been configured, it can be placed in the Messages app input field using the insert method of the active conversation:

conversation?.insert(message, completionHandler: {(error) in
            // Handle error
})

Once the message has been inserted, it is ready to be sent by the user.

Receiving a Message

When a message is received from another instance of a message app and the message app is currently active, the didReceive method of the MSMessagesAppViewController instance will be called and passed both the MSMessage and MSConversation objects associated with the incoming message. When the user selects the message in the transcript, the app extension will launch, triggering a call to the willBecomeActive method which will, in turn, be passed a copy of the MSConversation object from which a reference to the currently selected message may also be obtained.

Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book

Because the didReceive method is not called unless the message app is already active, the willBecomeActive method is typically the best place to access the incoming MSMessage object and update the status of the app. The following sample implementation of the willBecomeActive method, for example, gets the selected message from the conversation object and then accesses the properties of the message to obtain the current session and the encoded URL:

override func willBecomeActive(with conversation: MSConversation) {
    if let message = conversation.selectedMessage? {
        let url = message.url
        let session = conversation.selectedMessage?.session
	// Decode URL and update app
    }
}

Supported Message App Platforms

The ability to create interactive messages using a message app extension is currently limited to iOS 10 devices. Interactive messages will, however, be delivered to devices running macOS Sierra, watchOS 3 and iOS 10 in addition to older operating system versions.

When an interactive message is received on macOS Sierra, clicking on the message bubble will launch the URL contained within that message within the Safari browser. It is important to note that in this situation the web server will need to be able to decode the URL and present content within the resulting web page that relates to the message. On watchOS 3, the interactive message can be used to launch the full message app extension on a companion iOS 10 device.

For older versions of macOS, watchOS and iOS, an incoming interactive message is delivered in two parts. The first containing the image assigned to the message layout and the second the URL contained within the message.

Summary

Message apps are custom apps that are installed as extensions to the built-in iOS Messages app. These apps are used to create and send custom and interactive messages to other users. These extensions are made possible by the Messages framework. Message apps range in functionality from simple “sticker pack” apps through to fully interactive experiences.

This chapter has outlined the basic concepts of message apps and outlined the different classes that are typically required when developing a message app. The next chapter, entitled An iOS 10 Interactive Message App Tutorial, will use the information provided in this chapter to create an example interactive message app.


Learn SwiftUI and take your iOS Development to the Next Level
SwiftUI Essentials – iOS 16 Edition book is now available in Print ($39.99) and eBook ($29.99) editions. Learn more...

Buy Print Preview Book



PreviousTable of ContentsNext
Receiving Data from an iOS 10 Action ExtensionAn iOS 10 Interactive Message App Tutorial