apiFunc(user: User.currentUser, start: 0, limit: Constants.numberOfItemInOnePage,
success: { [weak self] (friends) -> Void in
dispatch_async(dispatch_get_main_queue(), { [weak self] () -> Void in
if let strongSelf = self {
strongSelf.friendList = friends
strongSelf.loading = false
strongSelf.tableView.reloadData()
}
})
}, failure: nil)
错误
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1
编译上面的代码时发生,但是如果我删除第二个[弱自我],错误就会消失
apiFunc(user: User.currentUser, start: 0, limit: Constants.numberOfItemInOnePage,
success: { [weak self] (friends) -> Void in
dispatch_async(dispatch_get_main_queue(), { () -> Void in
if let strongSelf = self {
strongSelf.friendList = friends
strongSelf.loading = false
strongSelf.tableView.reloadData()
}
})
}, failure: nil)
我认为由于有 2 个闭包,它应该是 2 个 [弱自我],任何人都知道为什么会发生编译错误
你不必像 Objective-C 中的@weakify
或__weak self
模式那样在嵌套闭包中重复[weak self]
。
[weak self]
在 Swift 中由编译器自动创建相同的模式,弱自我由外部闭包定义,由内部闭包使用。
以下是Objective-C版本的相应问题:iOS 块和对自身的强/弱引用