Questions tagged [ios-app-extension]

App extensions are a feature introduced in iOS 8 that allows apps to extend their functionality and become available to users while they're using other apps. Extensions are created to do a specific task, such as enabling sharing Safari pages through your app, or to display an interface in Notification Center for your app.

App extensions are a feature introduced in iOS 8 that allows apps to extend their functionality and become available to users while they are using other apps.

Extensions are created to do a specific task, such as enabling sharing Safari pages through your app, or to display an interface in Notification Center for your app.

722 questions
0
votes
1 answer

How Facebook App integrate with Siri. Any Apple Framework to do that?

I have an task to make ours company application more voice controlled. To do this I would like to integrate it with Siri the same way like Facebook app integrates (Look at the screens). How can I accomplish this. I was looking for some frameworks on…
Marcin Kapusta
  • 5,076
  • 3
  • 38
  • 55
0
votes
1 answer

iOS custom keyboard make a delete all button

Currently my iOS custom keyboard has a delete all button. Here is its code when clicked: func deletekeyPressed(sender: UIButton!) { for _ in 1..<10000 { (textDocumentProxy as UIKeyInput).deleteBackward() } } The problem is,…
Foobar
  • 7,458
  • 16
  • 81
  • 161
0
votes
1 answer

Is it possible to create a IOS app that can download plugins and extension later?

we have a ios app that provides the platform for many similar games. When you install this app. This app already contains binaries of x number of games. Now we are having size issue. So just wanted to know is it possible to create a ios app that…
luck
  • 165
  • 1
  • 10
0
votes
1 answer

Import PDF into own App with iOS Action Extension

I'm looking for a possibility to import a PDF in order to do some further tasks with it, just like described in this Question: Importing PDF files to app After two days of looking around in the inter webs I found that an action extension might be…
0
votes
0 answers

How to manage multiple coredata MOC while sharing it with App Extension?

Am facing a semaphore issue in my application randomly, can this be due to coredata locking the main thread? The coredata context is being used as below: App 1. Main context(Main Queue) that deals with UI and every CRUD operation. 2. Private…
0
votes
2 answers

How to keep iphone anonymous from iOS app?

On an iOS device how would you prevent an application from setting an identifierforvendor for your device or is their a way to refresh the identifierforvendor without having to delete re download the iOS app. The goal is I do not want an…
Jerry
  • 3
  • 3
0
votes
0 answers

How to find from which app the user clicked my app extension

I have an app extension which is featured in browsers, I would like to know from which app the user clicks my app extension. e.g Say the user clicks my extension in a chrome browser , I would like to know whether it was chrome browser or safari. The…
Tobio
  • 255
  • 4
  • 13
0
votes
1 answer

Sharing class and database with Share extension

I am trying to share class and database from my app to app extension . I have tried to add classes from the TARGET Membership, but on adding following issue comes Could any one help me to access my class and database in share extension. Thanks in…
Aditya
  • 783
  • 1
  • 8
  • 25
0
votes
1 answer

iOS share extension does not receive data from Safari

I have an iOS share extension that needs the URL of the opened web page. Everything works good, especially in a simulator. But on a real device I have around 20-30% cases where the extension does not receive any data i.e.: NSExtensionItem *inputItem…
shelll
  • 3,234
  • 3
  • 33
  • 67
0
votes
1 answer

Build Error with custom keyboard (app extension) - Invalid Entitlement

I'm building a custom keyboard app. I made 2 separate App IDs and provisioning profiles for each - the app and the extension. I added 'app group' capability to both on Member center portal. Then in Xcode, I enabled App group capability for both…
anivader
  • 364
  • 1
  • 4
  • 17
0
votes
1 answer

iOS Open in didn't work in share extension

in the app integrated "app extension" processing. It has "open in" functionality. Problems that I work with special files (f.e. it has special extension - file_name.myextension). And when I try to do "Open In" from an email client. I will get…
biloshkurskyi.ss
  • 1,358
  • 3
  • 15
  • 34
0
votes
1 answer

Scan functionality doesn't work on Action Extension(no camera opening to scan )

i am able to implement buttonactions,tableview,textfields ,switch... all are working fine in ActionExtension BUT Scan Functionality doesn't work (no camera opening to scan ) in Action Extension . Below i shared my scanning code in swift and…
0
votes
0 answers

Google Drive in ios application

I need to add a link to Google Drive to my application. To clarify, I just want a single link, not access to the whole drive. I do not want the user to have to log in to their Google account. I have added a wkwebview, but when I open a document in…
0
votes
1 answer

WCSession sendMessage not working

I'm calling this code in my Watch extension (and it does run, checked with a breakpoint): [[WCSession defaultSession] sendMessage:@{ @"load": @"main" } replyHandler:^(NSDictionary * _Nonnull replyMessage)…
Can Poyrazoğlu
  • 33,241
  • 48
  • 191
  • 389
0
votes
1 answer

Temporarily disable rotation for keyboard extension

I'm working on a iOS keyboard extension - and would like to temporarily disable rotation of the keyboard. The reason is that we use the keyboard view also for settings, since the settings bundle for keyboards extensions were (still are?) broken when…
Malakim
  • 1,333
  • 2
  • 18
  • 34