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