解析一次只更新9行

时间:2015-08-02 23:57:28

标签: xcode parse-platform rows updating

我是初学者,请记住。 Parse最近只允许我一次更新9行。这是我的代码。

    productname.text = object[@"productname"];
    websiteurl = object[@"websiteurl"];
    NSString *keystring1;
    keystring1 = object[@"key"];

    key = [keystring1 intValue];
    lastproduct = key;

    PFFile *file = [object objectForKey:@"image"];
    [file getDataInBackgroundWithBlock:^(NSData *data, NSError *error0){

        UIImage *image = [UIImage imageWithData:data];
        img.image =  image;

我听说过有关后台工作的事情,但我似乎无法正确添加它们。非常需要帮助!谢谢(:

0 个答案:

没有答案