我有一个应用程序,我在其中使用 Urban Airship 进行推送通知。
我在下面有一个代码。
- (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];
}
我收到注册 devicetoken 已弃用的警告:已弃用,如 libUAirship1.3.0 中一样。
在 ios6 中有什么替代方法?
提前致谢...