iOS Share Extension kUTTypeMovie get thumbnail

久未见 提交于 2019-12-13 07:08:57

问题


Hey there i am having trouble while sharing video from photos using my share extension. My problem is that i wanted to get the thumbnail & size of the video in my share extension hosted by Photos app. Any help is appreciable, thanks in advance.


回答1:


UIViewController of Share Extension have a property:

    NSExtensionContext *extensionContext;

NSExtensionContext have a property:

    NSArray *inputItems;

Which have a 0-indexed object of NSExtensionItem class

Next, NSExtension Item have a property:

    NSArray *attachments;

Which is an array of objects of NSItemProvider class, and now it is time to go to read some documentation for NSItemProvider class



来源:https://stackoverflow.com/questions/37537369/ios-share-extension-kuttypemovie-get-thumbnail

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!