0
簡易
から呼び出されるメソッドの内部で弱い自己を心配するが、確認のために探している私が正しく理解してる必要がありますか方法自体の中で弱い/強い自己を心配する?私はそれが閉鎖から呼び出されることがありますにもかかわらず、不要であることを理解としては、私たちが閉鎖
func doSomething() {
self.classString = "some new string"
// the self in this case will come from the weak self in the closure?
}
次
func doSomething() {
weak var weakSelf = self
weakSelf.classString = "some new string"
}