Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
230 views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...