解析问题

时间:2015-01-08 05:25:47

标签: ios parse-platform push-notification

我正在使用我的php应用程序中的parse rest api来推送到ios应用程序。我可以在解析中看到它已成功解析

enter image description here

但是怎么解析没有把这些通知推到ios app?

1 个答案:

答案 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应用程序发送通知到特定频道。