HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
API Reference

Show Notification

You can use this API to show a notification when you know that it is Luciq related.

if let notification = launchOptions?[.remoteNotification] as? [String: AnyObject] {
   let isLuciqNotification = Replies.didReceiveRemoteNotification(notification)
 }
NSDictionary *notificationDictionary = [launchOptions objectForKey:UIApplicationLaunchOptionsRemoteNotificationKey];

BOOL isLuciqNotification = [LCQReplies didReceiveRemoteNotification:notificationDictionary];
if(Replies.isLuciqNotification(data)){
  //Show notification related to Luciq
  Replies.showNotification(data);
}
if(Replies.isLuciqNotification(data)){
  //Show notification related to Luciq
  Replies.showNotification(data)
}