Hi, after i installed swift 2 a waring appeared : Variable 'self' was written to, but never read
in my code : [weak self] url in
Hi, after i installed swift 2 a waring appeared : Variable 'self' was written to, but never read
in my code : [weak self] url in
It seems you are capturing `self` but not using it inside the closure. Why don't you remove whole capturing `[weak self]`?