According to Apple documentation , YouTube is not included in the available sharing services, and indeed, when I look at the extensions of the general menus in the system settings, I do not see it there.
Presenting the listing for sharing in my own application using NSSharingServicePicker, as shown below, also does not include YouTube.
NSSharingServicePicker *sharingServicePicker = [[NSSharingServicePicker alloc] initWithItems:@[movieFileURL]];
[sharingServicePicker showRelativeToRect:myView.bounds ofView:myView preferredEdge:NSMinYEdge];
However, when using a share in QuickTime Player or iMovie, YouTube is an option, as shown below. Is there a way to get YouTube to appear as an option in my application, or did Apple just add YouTube to these applications without adding it to the general list of the operating system?

