我正在使用我的php应用程序中的parse rest api来推送到ios应用程序。我可以在解析中看到它已成功解析
但是怎么解析没有把这些通知推到ios app?
答案 0 :(得分:0)
您可以按照以下步骤执行此操作: -
1)从iOS应用AppDelegate.m
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
{
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation setDeviceTokenFromData:deviceToken];
[currentInstallation saveInBackground];
}
2)将UDID订阅到频道 - 根据您的要求分组频道
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation addUniqueObject:@"ChannelName" forKey:@"channels"];
[currentInstallation saveInBackground];
3)从您的php应用程序发送通知到特定频道。