I have run into this problem a few times while porting Objective-C code to Swift. Say I have the following code:
dispatch_async(dispatch_get_main_queue()) {
self.hostViewController?.view.addSubview(self.commandField)
}
This will result in an error, underlining the entire dispatch_async
call, offering:
Could not find member 'addSubview'
I assume this is an error that has not yet been properly implemented because if I put the addSubview
call outside the dispatch_async
block, the project builds fine. Initially I assumed it may have something to do with capturing self
in the block. However, inserting [unowned self] in
results in the same error, as does [weak self] in
(after the appropriate !
unwrap operators have been inserted).
How can I get dispatch_async
blocks to work in Swift that need to capture self
?
question from:
https://stackoverflow.com/questions/24092786/using-dispatch-async-with-self 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…