pushNotificationReceived:(NSDictionary *) method

Notifies the listener with the data been pushed from the back-end.

Syntax

public virtual void pushNotificationReceived: (NSDictionary * data)

Usage

                 
 Usage

 -(IBAction)buttonsPressed:(UIButton*)button{
     [ODPClientConnection registerForPayloadPush:self];
 }
                 
              


                 
                      -(void)pushNotificationReceived:data{
 {
     NSLog("Data : %", [data objectForKey:"Data"]);
 }