UIActivityViewController - Youtube Video Download

I have UIActivityViewControllerone that I use to share videos, I pass text NSStringand text NSUrlthat points to the local mp4 video file.

Sharing already works for email, message, photo album, etc. How can I upload my video to Youtube?

Apple does this in the Photos & Camera app by default if you try it there. Can I do this in my application?

+5
source share
2 answers

Apple uses only the part UIActivitythat it uses in its applications. This is likely because some of them are part of iOS, while others are part of applications (different teams).

OTOH is pretty easy to add your own UIActivityto your application, for example. see my AirPlay UIActivity that comes with sample .

So, if you can find the YouTube .NET client library, you only need a little glue to connect them.

+4
source

Unfortunately, according to the UIActivity class reference , it is not included in iOS 6 (well, at least not in the public API).

, , UIActivity ( ) youtube .

, , , .

+1

All Articles