我需要有关此代码的帮助。我从2014年开始学习教程,并且我在dispatch_async时遇到错误。我正在尝试创建一个应用程序,允许用户与附近的其他玩家或点对点玩。我认为代码需要更新,因为它已在swift 4中重命名,但我不知道新名称是什么。
这是代码
// below is where the code are wrong
dispatch_async(dispatch_get_main_queue(),{ () -> Void in
NSNotificationCenter.defaultCenter().postNotificationName("MPC_DidChangeStateNotification",object:nil,userInfo: userInfo)
})
完整代码在此链接https://github.com/javaplanet17/test/blob/master/multipeer中,它位于第36行的func内。
错误列表 首先我得到了这个错误
MPCHandler.swift:55:9: 'NSNotificationCenter' has been renamed to 'NotificationCenter'
我按下修复程序并将其重命名然后又出现了另一个错误
MPCHandler.swift:55:123: Use of unresolved identifier 'userInfo'
我按下修复程序并将其重命名然后我仍然出现错误
MPCHandler.swift:55:45: Cannot call value of non-function type 'NotificationCenter' Replace '()' with ''
我再次按下修复并更改了
现在代码如下:
NotificationCenter.defaultCenter.postNotificationName("MPC_DidChangeStateNotification",object:nil,userInfo: userinfo)
然后我将其更新为:
dispatch_async(dispatch_get_main_queue(),{ () -> Void in
NotificationCenter.default.post("MPC_DidChangeStateNotification",object:nil,userInfo: userinfo)
})
但我仍然有错误
MPCHandler.swift:55:121: Extra argument 'userInfo' in call
我试图将其更改为:
DispatchQueue.main.async(execute:{ () -> Void in NotificationCenter.default.post(name: NSNotification.Name(rawValue: "MPC_DidReceiveDataNotification"), object: nil, userInfo: userinfo))
})
但我仍然收到错误。如何解决此错误?
答案 0 :(得分:1)
以这种方式为我工作可能会尝试
DispatchQueue.main.async(execute: { _ in
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "MPC_DidChangeStateNotification"), object: nil, userInfo: userInfo)
})