ASIHTTPRequest and background download
问题 I was planning to use ASIHttprequest to download an mp3 file. i will need to use queues because there can be multiple simultaneous downloads. I saw that you can use [request setShouldContinueWhenAppEntersBackground:YES]; if you want to support background execution... If the file completes in the background, how can i handle this? will the delegates be called anyway? can i make one of those notification badges from the delegate if the app was in background whenn the delegate was called? PS: I