我正在尝试使用CloudKit从iCloud检索数据。因为我只想这样做一次,所以我将代码放在AppDelegate.swift文件的didFinishLaunchingWithOptions
中。
我试图在主线程上运行它,所以我的第一个ViewController中的代码在得到数据之前不会被调用。
func getPeople() {
let query = CKQuery(recordType: "Person", predicate: Predicate(format: "TRUEPREDICATE", argumentArray: nil))
CKContainer.default().privateCloudDatabase.perform(query, inZoneWith: nil) { (records, error) in
if error == nil {
names.removeAll()
messages.removeAll()
pictures.removeAll()
recordIds.removeAll()
for record in records! {
names.append(record.object(forKey: "name") as! String)
messages.append(record.object(forKey: "message") as! String)
pictures.append(UIImage(data: record.object(forKey: "picture") as! NSData as Data)!)
recordIds.append(record.recordID)
}
print("done")
} else {
print(error)
print(error?.code)
}
}
}
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
performSelector(onMainThread: #selector(getPeople), with: nil, waitUntilDone: true)
return true
}
然而,这似乎并没有起作用。在我的ViewController中print("done")
之后调用viewDidLoad
。我之前没有使用多线程,我想知道如何在我的查询完成之前阻止其他代码被调用。谢谢!
答案 0 :(得分:0)
不要等到数据加载完毕。检索它可能需要几秒钟,用户界面将无响应。如果它没有响应太长时间,系统甚至可以终止你的应用程序。而是在数据到达后更新您的视图。您可以使用String.format("%.2f", 12.3).replaceAll("0*$", ""); //Will output "12.3"
来观察数据更改。