Conforms to NSObject
Declared in UAPush.h

Overview

Implement this protocol and add as a [UAPush registrationDelegate] to receive registration success and failure callbacks.

Instance Methods

registrationFailed

Called when the device channel failed to register with Urban Airship.

- (void)registrationFailed

Discussion

When registration finishes in the background, any async tasks that are triggered from this call should request a background task.

Declared In

UAPush.h

registrationSucceededForChannelID:deviceToken:

Called when the device channel registers with Urban Airship. Successful registrations could be disabling push, enabling push, or updating the device registration settings.

- (void)registrationSucceededForChannelID:(NSString *)channelID deviceToken:(NSString *)deviceToken

Parameters

channelID

The channel ID string.

deviceToken

The device token string.

Discussion

The device token will only be available once the application successfully registers with APNS.

When registration finishes in the background, any async tasks that are triggered from this call should request a background task.

Declared In

UAPush.h