用于Parse fetchAllIfNeededInBackground的Swift 2语法

时间:2016-01-27 18:23:43

标签: ios swift parsing swift2 pfobject

Swift2中PFObject的fetchAllIfNeededInBackground(带有块)的语法是什么。

objective-c签名是:

"from Park p join p.users u where u.id = :userId").setParameter("userId", userId);

Parse PFObject Documentation

有人可以编写一个在Swift 2中编译的快速示例吗?

1 个答案:

答案 0 :(得分:0)

自动完成应该为你填写,如果没有,你有没有试过像

PFObject.fetchAllIfNeededInBackground(<objects>) { (results: [AnyObject]?, error: NSError?) -> Void in

    }