How to download video from url and save it in to document directory in iOS?

前端 未结 4 1858
旧巷少年郎
旧巷少年郎 2021-01-03 12:57

How to download video from url and save it in to document directory in iOS

4条回答
  •  独厮守ぢ
    2021-01-03 13:18

    You can use the NSURLConnection method sendAsynchronousRequest:queue:completionHandler:.

    That one method will download an entire file into an NSData object and call your completion handler method once it's done.

    If you can write a app that requires iOS 7 or later, you could also use the new NSURLSession API. That offers a lot more features.

    If you search using those terms you should be able to find tutorials and sample apps illustrating both APIs.

提交回复
热议问题