0

我有一个应用程序,我在其中使用 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 中有什么替代方法?

提前致谢...

4

1 回答 1

1

根据UrbanAirship 文档,您必须使用:[[UAPush shared] registerDeviceToken:deviceToken];

于 2013-07-15T11:25:33.443 回答