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

Share Extension issue?

all I am working on Share Extension working fine, But I need like suppose if I click more than one video don't want to show my App in share list. if I want to show my app only in case of image or video.(not image and video.). I am using below…
Bittoo
  • 579
  • 7
  • 21
0
votes
1 answer

share extension .appex file not installing with .app file. Only get to install the containing app

I am not able to add share extension to my app, as it in not getting installed with MIInstaller or MIContainer when i check the logs. I tried going to a very old commit of my main app(like an year ago- lets say it containing app 2), and share…
0
votes
0 answers

Share attachment from mail into application and save into document directory

I refer this Answer and I am curious about it. From this answer I know that we can open attachment into application using share extension but my question is like Can we just save those attachment into document directory? I want to save attachment of…
0
votes
0 answers

Change font in iOS share extension pop up

I have created a working share extension to share a URL, and am using the default share extension pop up. Now, I'd like to change the bar button font of the iOS share extension pop up. I have tried both of the following attributed text commands in…
lucius degeer
  • 403
  • 1
  • 6
  • 17
0
votes
1 answer

iOS 11 Share Extensions Broken

Before iOS 11 came out I created a share extension to my social media app. It worked perfectly fine. Once iOS 11 came out, the share extension quit working. I searched and debugged the extension until I found the source of the problem. When looping…
Grant Emerson
  • 404
  • 1
  • 4
  • 13
0
votes
1 answer

iOS - Move item between applications, via share extension

There are 2 applications: WhatsApp application My application(testAPP) I try to share a audio file between WhatsApp to my app (testAPP),I already implement APP Group and share extension. I succeed to integrate between those application and receive…
Android0077
  • 401
  • 1
  • 6
  • 12
0
votes
0 answers

iOS Share Extension Obj-C loadItemForTypeIdentifier method always returns an error

I am creating an app with Share Extension. The sharing works like a charm on Chrome, Safari, and many more, but EXCEPT for PocketApp. If I try to share a link from PocketApp to my ShareExtension App, the hasItemConformingToTypeIdentifier(kUTTypeURL)…
0
votes
2 answers

IOS Share Extension NSMutableArray addObject Unrecognized selector sent to instance

After clicking post to the share dialog, the Host App(e.g. Safari) hangs up if arrSites variable is currently not empty. I can only store 1 object inside my arrSites variable. How can I addObject to my NSMutableArray variable? Below is my…
0
votes
1 answer

What are the changes required in build setting when added share extension in app and submit Enterprise build

What are the necessary changes required in build setting when added share extension in app and submitting it to Enterprise distribution.
Mahi M.
  • 41
  • 8
0
votes
1 answer

Views not laying out correctly in iOS share extension

I have a NavigationVC which I display both in my app and in a share extension, which includes just a search view and a table view. In my app, it appears correctly, but in my share extension, the search view appears 20 pixels too high, and is…
Andrew
  • 7,693
  • 11
  • 43
  • 81
0
votes
1 answer

Item is not recorded to CoreData from Share Extension

I did create Share Extension. Using this extension I am trying to insert new item to CoreData. The code is below. Variables context and document is created. context.save() not failing. Insertion to the CoreData using main/host app works fine and…
Ramis
  • 13,985
  • 7
  • 81
  • 100
0
votes
1 answer

Is Share Extension appropriate for my case?

I must do the following: a user chooses a photo using the share functionality in the Photos app; just like, eg., WhatsApp, the photo "reaches" the app; the app does something with the photo; The photo must NOT be uploaded instantly: it must…
user5273262
0
votes
1 answer

Data sharing issue in iOS ShareExtension app

I am working on a ShareExtension app.I want to share data from Container App to ShareExtension app. Following is the code I am using In Container App View Controller: let userDefaultx = NSUserDefaults(suiteName:…
TechBee
  • 1,897
  • 4
  • 22
  • 46
0
votes
1 answer

Get video from share extension from photos like whatsapp

Im trying this code to get video from from share extension from photos app but its returns nil NSString *videoTypeIdentifier = (NSString *)kUTTypeMPEG4; for (NSExtensionItem *item in self.extensionContext.inputItems) { for (NSItemProvider…
Sudhir
  • 127
  • 1
  • 12
0
votes
1 answer

It is showed up two same apps button in UIDocumentInteractionController popup

I appologize for my low level English. I developed Share Extension in my app to support the extention added at iOS8. But, my app has been already showing up in UIDocumentInteractionController popup. So, my app has been showing up two items for same…
strawnut
  • 359
  • 5
  • 21