0
我一直在試圖將用戶名「NataMio」註冊到頻道中,但它正在像[「global」,「NataMio」]這樣的頻道下注冊。但它應該是[「NataMio」],任何人都面臨這個問題?在我的應用程序的Android版本上註冊爲[「NataMio」]。解析保存唯一對象錯誤
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
[currentInstallation addUniqueObject:@"NataMio" forKey:@"channels"];
// [currentInstallation setDeviceTokenFromData:deviceToken];
[currentInstallation saveInBackgroundWithBlock:^(BOOL succeeded, NSError * _Nullable error) {
// code
}];
在您的測試,似乎它包含默認的全局。因此,您可以直接將「頻道」設置爲[「NataMio」]。 – ChunTingLin