What is the syntax for PFObject's fetchAllIfNeededInBackground (with block) in Swift2.
The objective-c signature is:
+ (void)fetchAllIfNeededInBackground:(nullable NSArray<PFObject *> *)objects block:(nullable PFArrayResultBlock)block;
Can someone write a quick example that compiles in Swift 2?
Auto-complete should fill it for you, if not, have you tried something like
PFObject.fetchAllIfNeededInBackground(<objects>) { (results: [AnyObject]?, error: NSError?) -> Void in
}