iOS Share Sheets, allow a user to share important information directly with third party applications and services. Users can share via email, text and social networking apps.
Questions tagged [ios-sharesheet]
85 questions
1
vote
1 answer
How do you determine the content that is used when someone shares from a mobile device?
When a user is at a website on a mobile device and decides to share the link using the built-in share feature, how do you determine what value is used for the share content?
As you can see, it just pulls the title of the website when you share to…

Spencer Cooley
- 8,471
- 16
- 48
- 63
0
votes
0 answers
Any way make Messages on iOS open a share sheet for non "public.text" conformant UTI type if contents are text?
UPDATE: Playing with this more this looks like probably a bug in Messages. Files app and Mail app bring up the same viewer, but if it is a non-text UTI type, messages won't bring up the viewer, but Files will bring up a viewer that has the name of…

clearlight
- 12,255
- 11
- 57
- 75
0
votes
0 answers
How to make a ShareLink send an uneditable message - SwiftUI
I have a ShareLink that I want users to be able to share uneditable messages to others. This is in case the ShareLink is sending important data that could be misleading if it were to be edited by the sender (settings, high scores, etc.). Obviously…

TrappinNachos
- 87
- 1
- 7
0
votes
0 answers
share sheet with custom link
I'm new to share sheet and I've run into some problems trying to achieve what I want.
I'd like to share a link, so I included a link in the activityItems. At the same time, I'd like to append a tag to the link so I can track the user…

Xiaoyu
- 1
0
votes
1 answer
Unable to share image directly to Instagram in iOS
I want to enable a feature in my iOS app to share image on Instagram directly. While the conventional way is to present a share sheet provided by Apple, I prefer to have an Instagram button that allows users to share image easily without opening the…

Jabed Dhali
- 167
- 6
0
votes
1 answer
Handle file download from WKWebview using a WKDownload
I am trying to download a file from a WKWebview and show an iOS Share Sheet so that the user can decide what to do with the file. Everything works as expected in the browser.
My iOS code was previously working, but doesn't seem to be working…

user1763510
- 1,070
- 1
- 15
- 28
0
votes
0 answers
I have an issue on receive_sharing_intent IOS external share
I trying to receive data from other app like image ,text, here I'm using receive_sharing_intent it working on android issue on IOS it show my app on Share sheet when I click on that is won't open my app i don't know where I goes wrong. I did same as…

Samsudeen S
- 43
- 2
0
votes
1 answer
How do I get my app to show up in the open in menu for a CSV file in the files app on iOS?
I am trying to get my app to import a csv file from the open in menu from other apps. I know that I need to register that in my info.plist, but I can't find much clear documentation that isn't either outdated or just not helpful.
Still new to iOS…

SoundGuy41
- 1
- 2
0
votes
0 answers
IOS crash - ShareSheet _UIShareServiceProxyRaiseInvocationUnsupportedForInstance
in my app there is page which you can download a pdf report and i show the pdf report report with UIDocumentInteractionController as below
let viewer = UIDocumentInteractionController(url: URL(fileURLWithPath: path))
…

ALKIN ÇAKIRALAR
- 237
- 2
- 14
0
votes
0 answers
App with DocumentType image/jpeg/png not show in UIActivityController from photo library
I want to build an iOS app that can receive images from photo library. So I registered the document type public.image (also tried with public.jpeg or public.png) in Xcode.
But if I click on share in the photo library the app doesn't show up as a…

hassfers
- 1
0
votes
0 answers
How do I share content from my iOS app using the standard iOS share sheet?
It looks like the Share Extension allows other "host" apps to share content with my "containing" app. How do I share content from my app with other apps using the standard iOS share sheet? I have found information on how to use…

daniel
- 1,446
- 3
- 29
- 65
0
votes
0 answers
How do I get my Twitter social media share button on iOS to NOT take me to the share sheet, but to the Twitter app itself
I've run into an annoying problem where my Twitter share button on my iOS mobile app, using "SuperSocializer", it brings up the share sheet instead of taking me right to the twitter app itself. The other social media buttons I'm using take me right…
0
votes
0 answers
SwiftUI share sheet connection invalidated when creating new view
I have a ShareSheet on my app that works correctly, however when I create a new view I get the error
UIHostingController which is already presenting and connection invalidated . My error happens on a List View in my app but I am able to also…

user1591668
- 2,591
- 5
- 41
- 84
0
votes
1 answer
SwiftUI: Create a UIImage snapshot and use it as thumbnail in a shareSheet
I'm implementing snapshot sharing in iOS app, so the UIImage is created from the View and it is in the sharesheet and works fine, but I can't get to show this UIImage as a thumbnail is ShareSheet.
func actionSheet(image: UIImage) {
let…

Roman R
- 39
- 8
0
votes
0 answers
Swiftui image not getting rendered in sharesheet - unless you click twice
I create a view that will become a snapshot to send to the Share Sheet. Unfortunately, I get a nil image the first time I click share. The second time, the snapshot image shows up fine.
struct AffirmationSharingView: View {
//saving this view to…

Rebecca
- 39
- 6