In-App Chat Event Handlers
Run your own code whenever a new in app reply arrives in your iOS app, useful for custom UI when the default Luciq chat notifications are off.
Last updated
Run your own code whenever a new in app reply arrives in your iOS app, useful for custom UI when the default Luciq chat notifications are off.
This block is executed each time a new message is received in the SDK. This can be used to show your own UI when a new message is received when default chat notifications are disabled.
Replies.didReceiveReplyHandler = {
// Notify users about new message.
}LCQReplies.didReceiveReplyHandler = ^{
// Notify users about new message.
};Last updated