Reputation: 303
I have an issue with share extension,
Above steps are working fine with ios8 but only issue in the ios9 or later.
I need to open share extension from share icon of documentInteractionController.
Please help me as soon as possible...
Upvotes: 2
Views: 1607
Reputation: 128
On iOS9 due to the new changes on Safari security you have to set what kind of URL would work with your Share extension, for example, showing your Share extension only for text, images, etc...
Maybe the problem could be that you have to set what kind of data your app accept from Share extensions. You can set this param on your extension plist adding values to the dictionary NSExtension - NSExtensionAttributes
There's a list with the types you can use there (like NSExtensionActivationSupportsWebURLWithMaxCount, NSExtensionActivationSupportsText, etc... Maybe you need NSExtensionActivationSupportsAttachmentsWithMaxCount):
I hope it helps
Upvotes: 2