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…
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…
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
-…
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?
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!!
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…
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…
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:
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…
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…
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?
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…
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…
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.