We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This will cause a crash :
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{ [PFObject deleteAll:@[] error:nil]; });
This is because deleteAllInBackground: returns a task whose result is not a boolean wrapped in an NSNumber when the array is empty.
deleteAllInBackground:
NSNumber
The text was updated successfully, but these errors were encountered:
Indeed. Fixing in a bit.
Sorry, something went wrong.
No branches or pull requests
This will cause a crash :
This is because
deleteAllInBackground:
returns a task whose result is not a boolean wrapped in anNSNumber
when the array is empty.The text was updated successfully, but these errors were encountered: