(Xcode)Parse。如何在不使用PFQueryTableViewController的情况下删除表中的行

时间:2014-07-26 16:35:40

标签: ios parse-platform

我在Xcode工作,因为我正在使用Parse,所以我想在不使用PFQueryTableViewController的情况下删除表格中的一行,因为当我将UIViewController更改为PFQueryTableViewController时,我的应用程序崩溃了。

这是我的代码:

PFObject *object = [self.datasource objectAtIndex:IndexPath.row];
// Remove the row from data model
[object deleteInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
     if (succeeded){
        [self refresh]; // this is my function to refresh the data
     } else {
        NSLog(@"DELETE ERROR");
     }
}];

2 个答案:

答案 0 :(得分:1)

我建议您使用:PFQueryTableViewController并找出您的应用崩溃的原因。此外,你的代码看起来很好删除一行。

答案 1 :(得分:0)

您是否将UIViewController拖到故事板上而不是UITableViewController? PFQueryTableViewController不能是UIViewController。