XMMPushManager Class Reference
| Inherits from | NSObject |
|---|---|
| Declared in | XMMPushManager.h XMMPushManager.m |
Overview
XMMPushManager enables you to receive Push Notifications from the xamoom backend.
Create an instance and set the XMMPushNotificationDelegate.
For setup instructions please visit our github page. (https://github.com/xamoom/xamoom-ios-sdk))
– init
Initialize XMMPushManager and setup push notifications.
- (instancetype)initReturn Value
PushManager instance
Declared In
XMMPushManager.h
– handlePushRegistration:
Handle push registration success. Wraps [pushNotificationManager handlePushRegistration:].
- (void)handlePushRegistration:(NSData *)devTokenParameters
devToken |
Device token from application callback. |
|---|
Declared In
XMMPushManager.h
– handlePushRegistrationFailure:
Handle push registration failure. Wraps [pushNotificationManager handlePushRegistrationFailure:].
- (void)handlePushRegistrationFailure:(NSError *)errorParameters
error |
Registrations error. |
|---|
Declared In
XMMPushManager.h
– handlePushReceived:
Handle push received. Wraps [pushNotificationManager handlePushReceived].
- (BOOL)handlePushReceived:(NSDictionary *)userInfoParameters
userInfo |
Push notifications userData. |
|---|
Declared In
XMMPushManager.h