如何更新parse.com中的数据浏览器频道?

时间:2014-01-29 10:51:03

标签: ios iphone push-notification parse-platform

我正在使用Parse.com通过PFQuery在设备之间发送推送通知,如下所示

PFPush *push = [[PFPush alloc] init];
[push setChannel:[NSString stringWithFormat:@"User%@",id];
[push setMessage:@"You have a new message"];
[push sendPushInBackground];

工作正常。但是,如果我使用,

将频道更新为任何其他对象
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation addUniqueObject:@"Giants1" forKey:@"channels"];
[currentInstallation saveInBackground];

该对象已添加到数据浏览器中的频道。

enter image description here

我只想用新对象更新频道,而不是添加。怎么做?更新频道的PFquery是什么?

1 个答案:

答案 0 :(得分:1)

尝试:

currentInstallation.channels = @[ @"Giants1" ];

替换所有现有频道。您当前使用的方法是明确添加到现有列表。

您还应该能够使用setObject:forKey:来替换列表。