Questions tagged [ios8-share-extension]

Related to the "Share" extension of the iOS notification center.

Related to the "Share" extension of the iOS notification center.
https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/index.html

279 questions
1
vote
0 answers

How to stop presenting share extension in "Open-In" options Menu View?

I am developing share extension for my app. In my share extension info.plist , i added NSExtensionActivationSupportsImageWithMaxCount activation rule.So i expected my app share extension will present in any image share from any apps.But my issue is…
karan
  • 335
  • 4
  • 13
1
vote
1 answer

Need to open my app after using a sharing extension. Just like Dropbox and Maps.me do

I tried it in my extension with context.openURL, but that is blocked by Apple. This is what their documentation says: Discussion: Each extension point determines whether to support this method, or under which conditions to support this method. In…
Tycho Pandelaar
  • 7,367
  • 8
  • 44
  • 70
1
vote
1 answer

Upload image in a share extension results in NSURLErrorDomain Code=-997

I try to implement an extension with which the user can share an image on App.net. After a lot of trial and error I'm finally out of ideas. I have a framework to create the request. The request is a POST request with Content-Disposition: form-data.…
dasdom
  • 13,975
  • 2
  • 47
  • 58
1
vote
1 answer

iOS share extensions and images in Safari

I have a share extension that is marked as supporting public.url attachments, and this works perfectly for regular web pages shared from mobile safari. However if you are viewing an image in mobile safari my share extension is not viewable even…
Jozef Dransfield
  • 524
  • 4
  • 11
1
vote
1 answer

ios share extension - files from dropbox not loading correctly

When I try to load a shared item, the data that comes back is dropbox's login page - as if I weren't authenticated. Here is the current method I am using to get the file data: [itemProvider loadItemForTypeIdentifier:docType options:nil…
Herbal7ea
  • 306
  • 3
  • 8
1
vote
1 answer

iOS8 plugin pinterest.ShareExtension interrupted

I have an iOS app that uses UIActivityViewController for sharing. When I try to share via Pinterest I see the Pinterest share dialog very briefly and then it disappears. The following message is printed to the log: plugin pinterest.ShareExtension…
Sam
  • 6,240
  • 4
  • 42
  • 53
0
votes
0 answers

Decryption not working using Symmetric Key (Crypto Kit) ios

I am storing SymmetricKey in Keychain which is shared between App and App Share Extension. When I run the app encryption/decryption happens properly using the key, however, when I do decryption of text from App Extension using same key it throws…
Meluha
  • 1,476
  • 1
  • 9
  • 12
0
votes
1 answer

iOS Share extension shows my app but does not open it after clicking on it

I have added share extension to my iOS app. Then I deleted the storyboard from share extension. My ShareViewController code is as follows import UIKit import Social import CoreServices import UniformTypeIdentifiers class ShareViewController:…
BraveEvidence
  • 53
  • 11
  • 45
  • 119
0
votes
0 answers

Can we access firebase refresh token from iOS Share Extension in a flutter project

What we are doing We are hitting endpoint from Swift share extension and our main app is in Flutter. We are just trying to accomplish share suggestion feature from swift native. As you can see we have invoked Swift method from flutter and passed…
0
votes
0 answers

Add on option of third party in share contact ios

How to i do add on option of third party app in share contact on ios the same picture below! As far as I know IOS does support an extension called Share Extension, is that correct? Please ask me answer, Many thanks ! I'm newbie IOS
0
votes
0 answers

Google Maps SDK doesn't work in iOS Share Extension

I have an app that uses the Google Maps SDK for iOS to show an interactive map on a particular screen. It works great. Now I've added an embedded "share extension" that uses the same components to allow the user to share content (e.g. photos from…
leremjs
  • 973
  • 1
  • 9
  • 25
0
votes
1 answer

NSExtension Share Extension Not Showing App Icon on Device

My Objective-C iOS share extension is not showing the app icon when you select share from Google Maps (or anywhere else) on the device, even though it's working on the simulator. I've read a few similar posts and I've tried making the main project…
raeldor
  • 503
  • 3
  • 11
0
votes
0 answers

How to hide/remove my current share extension app from UIDocumentInteractionController-PresentOptionsMenu in Apple

I'm working on Xamarin Forms Application with dependency service to open the file ( Doc/image) in the UIDocumentInteraction Controller. Newly we implemented Share Extension to share the files to our app and the same is reflecting inside the app…
0
votes
2 answers

iOS Share Extension - handle screenshot data

I am trying to receive screenshot data from my Share Extension. I am running iOS 15.5. override func didSelectPost() { if let extensionItems = self.extensionContext?.inputItems as? [NSExtensionItem] { let attachments =…
0
votes
0 answers

iOS Share PDF from Adobe Reader

I'm newer to iOS development and I find the file system to be difficult to work with. I've got many cases implemented in my app to share pdfs from browsers and the files app, but when i try to share a pdf from adobe the shared url to the resource…