我正在尝试使用以下代码删除自定义类中的行。由于某种原因,它不会从数据库中删除它。
PFQuery *query = [PFQuery queryWithClassName:@"Friends"];
[query whereKey:@"username" equalTo:[[PFUser currentUser] objectForKey:@"username"]];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
for (Friends *currentFriend in objects) {
[currentFriend deleteInBackground];
}
}];
你看到我做错了吗?
答案 0 :(得分:0)
更改
[currentFriend deleteInBackground];
有关
[currentFriend deleteInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (succeeded) {
}