In-App Chat Event Handlers
Covered here is how to set up the event handler that fires with every new message received for your iOS apps.
New Received Message
Replies.didReceiveReplyHandler = {
// Notify users about new message.
}LCQReplies.didReceiveReplyHandler = ^{
// Notify users about new message.
};Last updated