I am wondering how you can stop a running ASIHTTPNetworkQueue ?
Is it somehow possible? Because when I dismiss my view where the network queue is set up, my app crashes.
I am wondering how you can stop a running ASIHTTPNetworkQueue ? Is it somehow
Share
According to the documentation you would use
[queue cancelAllOperations];
I’d suggest though that you may wish to consider placing all your core networking in a single shared data model class as that way you don’t have problems with view controllers coming and going.