Hi,
I'm currently asynchronously using NSURLConnection
with several UIViews
(every view handles NSURLConnection
as delegate). The problem I have is when user switches views too fast and the delegate becomes NSZombie
the app crashes - that is NSURLConnection doesn't have living delegate anymore. So, the first question is if there's a way to circumvent this?
The second question is simple - how do I handle NSZombie? Simple if(myObject != nil)..
doesn't work at all.