我有这个应该显示用户名的标签。现在,我已经完成了相当多的IOS开发,但是线程仍然有点不清楚。我如何确保此代码完成:
User(name: "", email: "", _id: "").getCurrentUser(userId: userId)
在此之前被激活了吗?:
self.nameLabel.text = currentUser.name
我一直在跟DispatchQueue
摸索,但我似乎无法弄明白......
Thx提前!
答案 0 :(得分:1)
您可以使用DispatchGroups作为一个解决方案来执行此操作。这是一个例子:
// create a dispatch group
let group = DispatchGroup()
// go "into that group" starting it
group.enter()
// setup what happens when the group is done
group.notify(queue: .main) {
self.nameLabel.text = currentUser.name
}
// go to the async main queue and do primatry work.
DispatchQueue.main.async {
User(name: "", email: "", _id: "").getCurrentUser(userId: userId)
group.leave()
}
答案 1 :(得分:0)
您必须将同步与异步任务区分开来。 通常,同步任务是阻止程序执行的任务。在上一个任务完成之前,下一个任务将不会执行。 异步任务恰恰相反。一旦启动,执行将转到下一条指令,通常会通过委派或阻止来获得此任务的结果。
因此,如果没有更多指示,我们无法确切知道getCurrentUser(:)
到底是做什么......
根据Apple的说法:
DispatchQueue管理工作项的执行。提交到队列的每个工作项都在系统管理的线程池上处理。
它不一定在后台线程上执行工作项。它只是一个允许您在队列上同步或异步执行项目的结构(它可能是主队列或另一个)。
答案 2 :(得分:0)
只需在getCurrentUser()
方法中发送通知,并在UIViewController中添加一个观察者来更新标签。
public extension Notification.Name {
static let userLoaded = Notification.Name("NameSpace.userLoaded")
}
let notification = Notification(name: .userLoaded, object: user, userInfo: nil)
NotificationCenter.default.post(notification)
在你的UIViewController中:
NotificationCenter.default.addObserver(
self,
selector: #selector(self.showUser(_:)),
name: .userLoaded,
object: nil)
func showUser(_ notification: NSNotification) {
guard let user = notification.object as? User,
notification.name == .userLoaded else {
return
}
currentUser = user
DispatchQueue.main.async {
self.nameLabel.text = self.currentUser.name
}
}