for index = 1; index < 53; index++ {
self.query.getObjectInBackgroundWithId(weekDataIDS[index]){ (allInOne: PFObject?, error: NSError?) -> Void in
//Data comes here
//saves a lot of colums in parse
}
}
我知道在背景中获取对象的速度太快我可以做类似的事情吗?
数据在app中出现并设置,然后返回for循环
答案 0 :(得分:0)
创建多个请求并将它们全部存储起来。或者,写一些云代码来一次性完成请求。