Customize Chat Message Bubble
Last updated
Last updated
When TapTalk.io framework is integrated to your app with the UI implementation method, you can add customized chat message bubbles to be used in chat.
You can check the following example to add a custom bubble to your chat.
TapTalk.io custom chat bubble is created based on TAPBaseGeneralBubbleTableViewCell
subclass of UITableViewCell
class. To add custom chat bubble, you have to create your own table view cell class subclass of TAPBaseGeneralBubbleTableViewCell
class and check also create XIB file.
You can download the sample xib file for right chat bubble cell (sender) and left chat bubble cell (recipient) by clicking the link.
Note: Your table view cell needs to have height constraint or top & bottom constraint to able to display the cell because TapTalk.io implements automatic row height.
To add your custom bubble to TapTalk.io, use the TapUI class and call the addCustomBubbleWithClassName
method. This is typically done in your AppDelegate class in method application:didFinishLaunchingWithOptions:
.
Note: Please note that the message type for custom bubbles should start with 3 as the prefix. For more information, check the message type page.
You can use your customized chat bubble in a chat room by constructing a custom TAPMessageModel with constructTapTalkMessageModel:
method, then sending the constructed message to the chat room with sendCustomMessage:
. Both methods can be accessed from the TapCoreMessageManager class.
To construct a message, you are required to have a TAPRoomModel as a parameter. You can use getPersonalChatRoom:
or getGroupChatRoom:
method in TapCoreChatRoomManager class to obtain a chat room model.
Below is an example to send a custom message with the steps mentioned above.