我正在使用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中有什么替代方案?
提前致谢...
答案 0 :(得分:1)
根据UrbanAirship documentation,您必须使用:[[UAPush shared] registerDeviceToken:deviceToken];