Swift2中PFObject的fetchAllIfNeededInBackground(带有块)的语法是什么。
Objective-C签名为:+ (void)fetchAllIfNeededInBackground:(nullable NSArray<PFObject *> *)objects block:(nullable PFArrayResultBlock)block;
Parse PFObject Documentation
有人可以写一个可以在Swift 2中编译的快速示例吗?
最佳答案
自动完成功能应该可以为您解决,如果没有,您是否尝试过类似
PFObject.fetchAllIfNeededInBackground(<objects>) { (results: [AnyObject]?, error: NSError?) -> Void in
}