0

我在从我的 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"];

但无论哪种方式,当我从仪表板向特定受众发送通知时,它都会发送给所有人。

谢谢

4

0 回答 0