プッシュ通知にアーバン飛行船を使用しているアプリがあります。
私は以下のコードを持っています。
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
UALOG(@"APN device token: %@", deviceToken);
// Updates the device token and registers the token with UA
[[UAirship shared] registerDeviceToken:deviceToken];
}
register devicetoken is deprecated: deprecated の警告が libUAirship1.3.0 のように表示されます。
iOS6でこれに代わるものは何ですか?
前もって感謝します...