I'm working on a music app, which use ASIHTTPRequest
to access to server's api, and use NSURLConnection
to download music files.
One music file is 10M or so. When downloading music file, access to server's api will be much more slow than not downloading music file.
So I want to change download connection's priority lower. But there is no API to change priority of NSURLConnection
or NSURLRequest
.
How to archive this?