iOS parse.com推送错误

时间:2013-02-20 03:19:28

标签: ios arrays dictionary error-handling parse-platform

我有一个字符串数组,我试图将其保存为解析作为推送通知的渠道。数组是正确的,我不知道发生了什么。有人可以对此有所了解吗?感谢。

错误:

  

错误:错误的频道名称:TestString123(代码:112,版本:1.1.30)

代码:

- (void)saveSelectedDepartmentsToParse:(NSMutableDictionary *)dictionary {

    NSArray *array = [dictionary allKeysForObject:@"YES"];

    NSLog(@"Array = %@", array);

    PFInstallation *currentInstallation = [PFInstallation currentInstallation];

    [currentInstallation addObjectsFromArray:array forKey:@"channels"];
    [currentInstallation saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {

        if (error == nil) {

            NSLog(@"Parse Save Succeeded");
        }
        else {

            NSLog(@"Parse Save Failed, %@", error.localizedDescription);
        }
    }];
}

1 个答案:

答案 0 :(得分:1)

原因是因为Parse不接受通道中的空格或任何特殊字符。删除所有空格和特殊字符后,操作成功。