我试图在多个Parse频道中注册一个设备,但是不起作用,也不知道我做错了什么。
在我的表格中,Parse似乎没有显示设备在这些频道中
按下按钮时执行此操作。
[currentInstallation addUniqueObject:@"CocaCola" forKey:@"channels"];
[currentInstallation addUniqueObject:@"Seur" forKey:@"channels"];
[currentInstallation addUniqueObject:@"ADIF" forKey:@"channels"];
[currentInstallation saveInBackground];
答案 0 :(得分:0)
尝试以下方法:
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
currentInstallation.channels = @[ @"CocaCola", @"Seur", @"ADIF" ];
[currentInstallation saveInBackground];
或者,请查看使用subscribeToChannelInBackground
subscribeToChannelInBackground:
将设备异步订阅到推送通知频道。
+ (void)subscribeToChannelInBackground:(NSString *)channel