gpt4 book ai didi

ios - 无法将 channel 保存到 PFInstallation (iOS)

转载 作者:行者123 更新时间:2023-11-29 02:49:59 25 4
gpt4 key购买 nike

我正在尝试从 PFInstallation 添加/删除 channel ,但我不断收到相同的错误消息:

   Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Operation is invalid after previous operation.'

我的代码:

NSString * channel=[NSString stringWithFormat:@"%@%@%@", city, @"_", self.titleLabel.text];
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
if([sender isOn]){
[currentInstallation addUniqueObject:channel forKey:@"channels"];
} else{
[currentInstallation removeObject:channel forKey:@"channels"];
}
[currentInstallation saveInBackground];

最佳答案

当 channels 为 nil 时,addUniqueObject 方法存在错误。你应该在它之前添加它。

if (currentInstallation.channels == nil)
{
currentInstallation.channels = [[NSArray alloc] init];
}

此外,您应该使用 saveEventually 而不是 saveInBackGround。

这应该是SDK的一个bug。

关于ios - 无法将 channel 保存到 PFInstallation (iOS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24672290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com