我正在使用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];
该对象已添加到数据浏览器中的频道。
我只想用新对象更新频道,而不是添加。怎么做?更新频道的PFquery是什么?
答案 0 :(得分:1)
尝试:
currentInstallation.channels = @[ @"Giants1" ];
替换所有现有频道。您当前使用的方法是明确添加到现有列表。
您还应该能够使用setObject:forKey:
来替换列表。