解析数据是一个PFObject类,包含我正在查询的“公司”数据。获取数据并将其赋值为ParseData对象很好,但问题是将其放入我的listivar中。正如您从输出中看到的那样,匿名块中的ivars没有任何变化。有解决办法或解决方案吗?
import Foundation
class AllCompanies: NSObject {
var list:[ParseData] = []
var testList:[String] = []
var testString:String = "butter"
override init()
{
super.init()
getCompanies()
}
func getCompanies()
{
let query = ParseData.query()!
query.findObjectsInBackgroundWithBlock { objects, error in
if error == nil
{
for company in objects!
{
let newCompany:ParseData = ParseData()
newCompany.name = company.objectForKey("Name") as! String
newCompany.logo = company.objectForKey("Logo") as! PFFile
self.list.append(newCompany)
self.testList.append("here")
self.testString = "no matter"
}
}
else
{
print("Error: \(error) \(error?.userInfo)")
}
}
}
}方法调用:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
Parse.setApplicationId("m0zIvk7nfP6nEUrGYzyecbhRdqTrhbUoBI00fvZ4", clientKey: "lmqPfyrkeq4p8v6cukV7aFCVdi4evb8MFyjgvnEG")
PFAnalytics.trackAppOpenedWithLaunchOptions(launchOptions)
let allCompanies = AllCompanies()
print("\(allCompanies.list)")
print("\(allCompanies.testList)")
print("\(allCompanies.testString)")
return true
}发布于 2016-01-18 03:23:38
getCompanies方法是异步的吗?确保在运行print命令之前,findObjectsInBackgroundWithBlock method.You不能将异步代码编写为同步代码。试着在self.testString = "no matter".good运气下面写你的打印代码!
发布于 2016-01-18 03:20:07
问题在于查询是异步的。
应该将打印行移动到查询回调闭包中。
https://stackoverflow.com/questions/34846739
复制相似问题