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
2 answers

Image Grabbing with iOS Share Extension

how can I check that the app or page has an image to be grabbed, and grab it to use later from an iOS Share Extension using SWIFT?
shaydawg
  • 1,193
  • 1
  • 12
  • 17
0
votes
1 answer

A signed resource has been added, modified, or deleted

I have this error ever since I have added a share extension to the iOS project. The error pops up when the xcode is finished building the project and just before it could launch the app on the device. So I traced down the device log for more…
cloudy45man
  • 391
  • 2
  • 19
0
votes
1 answer

Best way to check if sharing via SLComposeViewController is successful with a limited (or no) Internet connection

Apple's documentation is clear on using SLComposeViewController to provide sharing capabilites with other social networks such as Twitter and Facebook. Typical code will use isAvailableForServiceType to verify if a particular service is available…
Gordonium
  • 3,389
  • 23
  • 39
0
votes
1 answer

How to get the state of share extension in iOS?

I'm developing a share extension for my app. I know that the following methods will be fired, if user minimize and reopen the app. - (void)applicationDidEnterBackground:(UIApplication *)application -…
Ashok
  • 5,585
  • 5
  • 52
  • 80
0
votes
2 answers

Dealing with extensionContext.inputItems for ShareExtension. Why only get firstObject of inputItems?

Why, when dealing with Share Extensions and the extensionContext.inputItems inside of a view controller, do people (and the Apple docs) only get the firstObject of the inputItems instead of iterating over all of them?
0
votes
2 answers

About app extension in the safari

I customize a share extension, I set it on in the safari, it's showed, but when I open the safari next time, it's not showed in the safari menu and the switch of my share extension is on, why ? who can help me, thanks very much!!
Abel_CN
  • 64
  • 6
0
votes
1 answer

share extension showing only under the more section in UIActivityViewController?

I had an application in which i made a share extension.But My point is For the first time it is coming only in the more section of the UIActivityViewController.not coming independently like Facebook or twitter.Can anybody help me on this issue to…
hacker
  • 8,919
  • 12
  • 62
  • 108
0
votes
0 answers

Share Facebook session between main target and app (share) extension

I'm trying to develop a share extension that uses Facebook SDK to post status updates to user's wall. The problem: user is already logged in on the main app but when I run the share extension target, Facebook access token becomes nil (not…
0
votes
0 answers

iOS Extension does not display image in UIImageView

I found this good link how to get selected images. I am trying to set image that I get from extension context to image view that I placed in storyboard. this my print out code po self.theImageView:
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
0
votes
0 answers

iOS share extension NSUserDefaults issue with stored auth token

I use RestKit as a library that handle all my request. So I use base authorization and keep my token in user default. Here is a good example how to get data from app NSUserDefault and use it in my share extension. So I made this: NSUserDefaults…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
0
votes
1 answer

Request data from backend to show it in extension UI

I have a class with needed requests that I use for my app. So let's say that I need movies list from server: [[MyApiClass sharedInstance] getMovies]; So it return for me JSON with movies. How can I get this list, for my share extension? The problem…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
0
votes
1 answer

How to add an "Open In" button to an iOS 8 Share Extension?

I need to add an Open in button to an iOS 8 Share Extension just like the app Twitshot have done. You will get the menu if you share a link from >Safari >Share >Twitshot. How can that be done?
Tom
  • 5,588
  • 20
  • 77
  • 129
0
votes
0 answers

How to invoke an app through the iOS 8 Share Menu?

I created a Single View Application in Xcode and added a Share Extension target called "Add Note" to it. After selecting "Add Note" from the Share Menu in Safari, a widget gets invoked instead of my actual full app. What do I need to change to get…
Matt
  • 2,981
  • 5
  • 23
  • 33
0
votes
1 answer

Is it possible to create an iOS 8 sharing extension that opens the website in its app?

I'm building an app, and I was curious if there's a way to open the app when you're on the website through the iOS Safari extension. So, if I'm on a post I'd tap the app icon in the share sheet and I'd pass that to the app to load the post in the…
0
votes
3 answers

How to get bundleId of the source app when using share extension in IOS8

I wanna know which app calls the share extension to share image to my app(its bundleId or appName). But I found no way to do it. There is none information about the source app in NSExtensionContext. I would greatly appreciate any help.
Andrew
  • 1,088
  • 10
  • 21
1 2 3
18
19