I\'m developing share extension for my app. Every thing is fine, but i\'m facing one main problem, my app is not in the share menu while sharing from photos app.
Bel
This is a bug in iOS. There is no workaround in the current version. File a bug report with Apple and hope that they fix it soon.
Then just Run the application
Plist
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>NSExtensionActivationRule</key>
<dict>
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
<integer>1</integer>
</dict>
</dict>
<key>NSExtensionMainStoryboard</key>
<string>MainInterface</string>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.ui-services</string>
</dict>
https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/ShareSheet.html
http://www.appcoda.com/ios8-share-extension-swift/
http://www.appcoda.com/tag/app-extension/
How to create widgets showing on home screen in iOS 10
I encountered this issue on iOS 14 Beta, resolved by restarting the device.
I faced the same issue. I found, that in the Build Settings (of extension target) field Wrapper Extension was empty, while it should be assigned as "appex". Assigning "appex" to Wrapper Extension solved my problem.
For anyone having the same problem and not finding a solution, worth trying also to check "Deployment Target" of the extension.
It can be different that the main app and is setup by default when the extension is created.
In my case it was higher than what I had on my device.