i’m making an mac app that downloads an mp3 from a link.
For example, this link: http://media.soundcloud.com/stream/VGGUdzU69Ng5?stream_token=2U9W2
As you can see, it is an mp3 file.
How can i download it to a specific path?
Thank you
i’m making an mac app that downloads an mp3 from a link. For example,
Share
The simplest way is to use
NSURLDownload:Ideally you’d set an object as the delegate so you can receive progress notifications and then release the
NSURLDownloadobject when finished.