Layer is a service that allow easy integration a chat function to the App. I have been reading their document, and Atlas is a lightweight, flexible set of user interface components designed to enable developers to quickly and easily integrate native communications experiences into their applications. It was designed and built from the ground up to integrate with LayerKit the native iOS SDK for accessing the LayerKit communications platform.
Sending Image is basically automatically handle by Altas, but in order to view the image after receiving, you must set up autodownloadMIMETypes property for Layer Client.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ATLMIMETypeImageJPEGPreview, ATLMIMETypeTextPlain defined in Altas to present the MIME tpye for the medias | |
self.layerClient = [LYRClient clientWithAppID:YOUR_APP_ID]; | |
self.layerClient.autodownloadMIMETypes = [NSSet setWithObjects:ATLMIMETypeImageJPEGPreview, ATLMIMETypeTextPlain, nil]; | |