AWSPushManagerDelegate Protocol Reference
| Conforms to | NSObject |
|---|---|
| Declared in | AWSPushManager.h |
– pushManagerDidRegister:
required method
Indicates the success of the - registerForPushNotifications call.
- (void)pushManagerDidRegister:(AWSPushManager *)pushManagerParameters
pushManager |
An instance of |
|---|
Declared In
AWSPushManager.h
– pushManager:didFailToRegisterWithError:
required method
Indicates the failure of the - registerForPushNotifications call.
- (void)pushManager:(AWSPushManager *)pushManager didFailToRegisterWithError:(NSError *)errorParameters
pushManager |
An instance of |
|---|---|
error |
An |
Declared In
AWSPushManager.h
– pushManager:didReceivePushNotification:
required method
Indicates the device received a Push Notifiation.
- (void)pushManager:(AWSPushManager *)pushManager didReceivePushNotification:(NSDictionary *)userInfoParameters
userInfo |
A dictionary that contains information related to the remote notification, potentially including a badge number for the app icon, an alert sound, an alert message to display to the user, a notification identifier, and custom data. The provider originates it as a JSON-defined dictionary that iOS converts to an |
|---|
Declared In
AWSPushManager.h
– pushManagerDidDisable:
required method
Indicates the success of the - disablePushNotifications call.
- (void)pushManagerDidDisable:(AWSPushManager *)pushManagerParameters
pushManager |
An instance of |
|---|
Declared In
AWSPushManager.h
– pushManager:didFailToDisableWithError:
required method
Indicates the failure of the - disablePushNotifications call.
- (void)pushManager:(AWSPushManager *)pushManager didFailToDisableWithError:(NSError *)errorParameters
pushManager |
An instance of |
|---|---|
error |
An |
Declared In
AWSPushManager.h