我无法通过iOS应用订阅推送通知中的受众群体。我在Back4App的仪表板上创建了几个受众群体。但我不知道如何在Xcode中订阅或取消订阅我的应用程序。
我的问题是他们是否订阅;设备始终获取通知
这就是我订阅的方式:
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation addUniqueObject:@"General" forKey:@"channels"];
[currentInstallation addUniqueObject:@"Events" forKey:@"channels"];
[currentInstallation saveInBackground];
取消订阅:
[currentInstallation removeObject:announcementTitles[indexPath.row] forKey:@"channels"];
但无论如何,当我从仪表板向特定受众发送通知时,它会发送给所有人。
由于