Receiving Incoming Invites with the Unity Invites Delegate


/ Published in: Objective C
Save to your folder(s)

The Unity invites delegate.


Copy this code and paste it in your HTML
  1. // all incoming invites will be received in this delegate
  2.  
  3. - (void) onNewInvites: (NSArray *) invites
  4. {
  5.  
  6. // store invites persistently in either NSUserDefaults, in a file, or CoreData
  7.  
  8. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.