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

iOS Share Extension not working

I have a share extension allowing users to upload videos directly from other applications (eg. photos). It has a custom view (not SLComposeServiceViewController). It was working just fine but currently I'm having strange issue that share extension…
cloudy45man
  • 391
  • 2
  • 19
4
votes
1 answer

iOS Custom Share Extension get content

I want to create custom share extension and I would like to access to data that I want to share. So as I read we need to inherit from UIViewController instead of SLComposeServiceViewController to have custom interface. So with default interface I…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
4
votes
0 answers

share Extension IOS 8: How do I remove share itself activity in share category?

Please see the As you see, It has a button is share Button. I want to remove it. I use share Extension to do share screen shot for my app: add target share Extension use UIActivityViewController to present. I able to remove Mail Button, FaceBook…
4
votes
1 answer

Slow iOS Share Extension

I'm working on a sharing extension to simply grab a link, choose a few names to share it to, and Share. The data layer isn't added yet, only the UI to display some names in a tableview (using a custom cell) and I'm pulling in the shared URL from…
d2burke
  • 4,081
  • 3
  • 39
  • 51
4
votes
1 answer

Modify webpage on Share Extension iOS8

I try to run js pre/post processor to modify webpage after finish share extension, but finalize method failed to run. In Apple document it said that both Share extensions and Action extensions can benefit from this js processor, but my finalize…
sarunw
  • 8,036
  • 11
  • 48
  • 84
4
votes
3 answers

Posting via SLComposeViewController on facebook and twitter in IOS-8

I have tried to post on facebook and twitter using SLComposeViewController. my code is -(void)postToFacebookWithObject:(id)object FromController:(UIViewController*)vc { if ([SLComposeViewController…
4
votes
4 answers

Changing SLComposeSheetConfigurationItem's tint color/text color

So for the last two weeks I have been working on my GitHub repo https://github.com/satheeshwaran/iOS-8-Features-Demo where in I tried to demo the Share extension introduced in iOS 8. I got to know the way in which I could add…
Satheesh
  • 10,998
  • 6
  • 50
  • 93
3
votes
1 answer

Does anyone go through the package flutter_sharing_intent? It doesn't work on iOS

Just went through the details of flutter_sharing_intent and all fine on Android, but not working on iOS. Any clues? Already followed the steps in setting up the environment in XCode but no luck. The main application couldn't be launched with…
Tim Chan
  • 31
  • 2
3
votes
1 answer

Share Data between Project and Share Extension

I would like to share data between my Main Project and my Share Extension. This is what I did: 1. enable App Groups in both Project & Share Extension 2. save data in Project inside viewDidLoad (works fine, I tested it): DataHandler.getWishlists {…
Chris
  • 1,828
  • 6
  • 40
  • 108
3
votes
1 answer

How to get a iOS share extension to get web page content from Safari instead of URL

I have a working share extension written in swift. When I test a share operation from Safari, I always only get the URL type (kUTTypeURL). What I want is to get some form of rendered version of what the user is looking at (PDF or HTML?). Using the…
Matt__C
  • 319
  • 2
  • 10
3
votes
1 answer

Share Selected Text - iOS Share Extension

I want to be able to share selected text, but my extension only appears when clicking on the share icon (and then it populates the field with the page title). I want my extension to appear when the user selects text and clicks "Share..." (like in…
connorvo
  • 761
  • 2
  • 7
  • 21
3
votes
0 answers

How should I prevent memory warning in Share Extension

I'm implementing a share extension the extension is dying before the processing of the image finishes. 2018-02-22 15:11:20.327673-0500 ContentShare[9491:649748] [core] SheetViewController didReceiveMemoryWarning 2018-02-22 15:11:20.367087-0500…
propstm
  • 3,461
  • 5
  • 28
  • 41
3
votes
1 answer

Network request from share or action extension ios

I've searched around this title, but didn't find any appropriate information. I've found ways to make network request that sends it's result to containing app. However, I wanna get response directly back to extension and show information there. I've…
えるまる
  • 2,409
  • 3
  • 24
  • 44
3
votes
2 answers

Share sqlite db into share extension into iPhone app

I want to integrate share extension into my iPhone app. App contain sqlite database which contains some of the phone book contacts. I added share extension into app and extension is also visible into share activity view controller. But the problem…
Kishan Vyas
  • 327
  • 1
  • 2
  • 15
3
votes
1 answer

ObjectiveC Share Extension Cancel button

this could be something silly but I have this Share NSExtension implemented for my app which is holding custom UI built in MainInterface.storyboard (image attached). Now the question is, how do I back out of it? I've…