Up till now, I've been naïvely using Swift without really caring about the memory management. But I'm implementing a capture list, and I guess it sort of makes sense.
My question is - why wouldn't self
be automatically made unowned to avoid retain cycles? Is there a situation in which you'd explicitly need self
to be owned that couldn't be resolved by saving some of its data elsewhere?
Give you a simple example
This is a class that I need to use self,not
unowned self
If I use
self
hereThen call
The code will executed well,after 4 seconds,it will log
But if I changed to
unowned self
,}
Then call
It will log
then After 4 seconds,the app crashed.Because,the object is dealloced.
So,if you need to retain the object,you do not use
unowned self