Questions tagged [ios-sharesheet]

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.

85 questions
0
votes
1 answer

Objective-C version of a custom UIActivityType

In swift, this is quite simple. For example, if I want to add a custom Pinterest UIActivityType: extension UIActivityType { static let postToPinterest = UIActivityType(rawValue: "pinterest.ShareExtension") } This is all I have to do. However,…
0
votes
0 answers

iOS file transfer without AirDrop

I am making an iOS app where i have to transfer pdf file from iOS device to mac and windows pc. I told my client to make it for iOS device to Mac using AirDrop sharing. But client told me that, he never wants to depend third party help. He just will…
0
votes
1 answer

IOS UIActivityViewController, Can not exclude custom activityType

I made my own share extension and also my app sharing something with UIActivityViewController. But it was not cool, my own share-extension shows up when I am sharing something. So I want exclude my own share-extension, but it is not working. I…
Hyesang Yu
  • 26
  • 5
0
votes
0 answers

UIActivityViewController: prevent activity from appearing if an error occurs after the user selects the activity?

In my app, I have a UIActivityViewController containing standard items like UIMailActivity (and Messages, Facebook, etc). Sometimes, the user will tap one of these activities, but an error will occur that prevents sharing of the item. What ends up…
Icydog
  • 467
  • 2
  • 6
0
votes
2 answers

Force dismiss iOS share sheet manually Swift iOS 8 and 9

I am using UIActivityViewController to display options. Then select Twitter or Facebook, it appears iOS share sheet. Is there any way to dismiss share sheet manually? I cant see any delegate to this. Here is my code: let arrObjectsToShare = [self,…
Bonnke
  • 896
  • 1
  • 12
  • 24
0
votes
1 answer

Getting the native "share sheet" to pull up when item button is pressed

I am working on finishing an rss reader app for my internship and the last thing I need to implement is a "Share" button on the top right corner of the uiwebview that displays the mobile site link for the article. Here is a screenshot of the web…
Christophorus
  • 154
  • 12
0
votes
1 answer

Sharing functionality for an rss feed article

My rss app is almost complete but I need to have a "share" button on the top right corner of the web view for the articles. I have the code setup so far to show the "action" button right next to the title of the article but since there is no real…
Christophorus
  • 154
  • 12
-1
votes
1 answer

SwiftUI 4: ShareLink as a swipe action

I would like to present a share sheet when the user interacts with a swipe action. To achieve this I currently have simply this code: .swipeActions(edge: .leading, allowsFullSwipe: false) { ShareLink("Text", item:…
SwiftUI_Max
  • 201
  • 2
  • 6
-1
votes
1 answer

How do I access The URL shared over an Activity Sheet in iOs

I am trying to import a PDF to my App through Safari via activity sheet. My app pops up on the activity sheet but I cannot access the URL. I have tried using the application(_:open:options:) function in my app delegate but it's not working url…
soyebo
  • 11
  • 5
-1
votes
1 answer

UIActivityController sharing to Microsoft Teams cuts off the modal

Sharing on teams bugs out modal like this I have implemented UIActivityController where I am sharing an image along with a link but excluding image when sharing it to any app and using the image just for saving it to camera roll. When I try to share…
1 2 3 4 5
6