I am using the latest SDK for iOS and I have put the suggested code in init method of my appDelegate:
[[XLappMgr get] setInboxDelegate:self];
[[XLappMgr get]setDeveloperRegisterNotificationSelector:@selector(doSomethingAfterRegister:)];
[[XLappMgr get] setDeveloperXidNotificationSelector:@selector(doUpdateXid:)];
The doSomethingAfterRegister method is called successfully but not the doUpdateXid one.
My aim is to get the Xid value and I would like to know when is the right time to do this task.