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
0
votes
1 answer

Dismiss share extension from custom SwiftUI view

I am using custom SwiftUI view from main target for sharing document from ShareViewController of share extension. Using Navigation link and sharing the document after navigating through three views. document is uploaded without any problem, but I…
ajith Kumark
  • 333
  • 1
  • 3
  • 16
0
votes
1 answer

Swift Custom URL is not opening the app from extension

I have a Share-Extension from which I would like to redirect the user to the main app. This is what I tried: let signInAction = UIAlertAction(title: "Anmelden", style: .default) { (alert) in let myAppUrl = NSURL(string: "open://")! …
Chris
  • 1,828
  • 6
  • 40
  • 108
0
votes
1 answer

iOS sharing extension showing locally only

I have successfully built an iOS app with a sharing extension. On my phone connected to Xcode, both work flawlessly. However, when submitting the build to AppStoreConnect and distributing it via TestFlight, the share extension goes missing. I have…
j___.___j
  • 286
  • 1
  • 3
  • 20
0
votes
0 answers

Xamarin ios Share Extension Crashes on try to get stream of an .mov file

We currently are workiong on an share extension (xamarin ios) for mediafiles. Every thing working fine expecpt .mov files. Every kind of attempt to load them in an stream or get any bit of the shared .mov files failed with an app crash. Could anyone…
0
votes
1 answer

Does an iOS extension have an IPA file?

I was wondering if a share extension creates an .ipa file similarly to a regular target? Thanks
Lirik
  • 3,167
  • 1
  • 30
  • 31
0
votes
0 answers

open .pkpass file from Wallet using share extension iOS

I am trying to open .pkPass file from wallet using share extension, but its not opening. Basically its returning data and I want URL. but If I try to open .pkpassfile data in PKAddPassesViewController its not open it says Attempt to present on …
0
votes
1 answer

How to share content from one app to another

How to share text-message, Links, Images, Audio Etc., one app to another App. Like in Whats app for forward and like to share the content its shows Suggestions We will have list of items (Notes, skype, trello, linkedin etc...,). How can I include…
kiran
  • 4,285
  • 7
  • 53
  • 98
0
votes
1 answer

How to launch SLComposeServiceViewController from another UIViewController

I have an iOS app with a Share Extension. The main class of the Share Extension inherits the SLComposeServiceViewController, and in the Storyboard, I have checked "Is initial view controller". However, I need another custom view to render with more…
Rasmus Puls
  • 3,009
  • 7
  • 21
  • 58
0
votes
2 answers

Swift: how to add App sharing feature with Extension Sheet

I want to add the my app sharing feature in my App. Like The Action Sheet Toggle up with the all the social Media and other app in which i can share my app Url. I try to find the tutorial for that but i can't find the proper tutorial for that. this…
Krunal Nagvadia
  • 1,083
  • 2
  • 12
  • 33
0
votes
1 answer

Not able to access ionic plugin keychain key value pair in iOS from share extension code.

I have created an hybrid app where we upload files using ionic. For iOS we created a share extension to upload the file and right now trying to pass credentials from ionic application to shared extension in iOS. I used iOS keychain mechanism as it…
0
votes
1 answer

iOS proving file is accessible for upload from share extension to reactnative

Is there a test way to prove I have access to a file? I'm using if ([[NSFileManager defaultManager] fileExistsAtPath:[url path]]){ long long fileSize = [[[NSFileManager defaultManager] attributesOfItemAtPath:url.absoluteString…
manuelBetancurt
  • 15,428
  • 33
  • 118
  • 216
0
votes
1 answer

Only use subset of pods for child target

Is there a way to only use a subset of pods for a child target of an app (e.g. a share extension of my app) I tried doing it this way: platform :ios, '8.0' inhibit_all_warnings! I18n.enforce_available_locales = false def all_pods pod…
Max90
  • 193
  • 2
  • 14
0
votes
0 answers

iOS Share extension cannot load panorama image

When I am sending a panorama image (made with default panorama mode of my iPhone) to my iOS Share extension, hasItemConformingToTypeIdentifier tells me that there is indeed an image sent, however loadItemForTypeIdentifier does not return anything.I…
Laurent Crivello
  • 3,809
  • 6
  • 45
  • 89
0
votes
1 answer

Initial storyboard view controller not loading swift 3

My application was loads fine and once i have added share extension to app, its not loading initial view controller, Just showing blank screen? Any solutions? Do we need to use same bundle id for both app and app extension? I beleive, same app group…
Gopik
  • 255
  • 2
  • 17
0
votes
1 answer

How to share Parse login session with iOS extension?

When writing an iOS extension for an app, is it possible to share the app's current Parse login session with the iOS extension? iOS extensions are bundled with iOS apps but run in separate containers. So when the user logged in on the app, the…
Manuel
  • 14,274
  • 6
  • 57
  • 130