Questions tagged [ios-extensions]

App Extensions for iOS development.

App Extensions for iOS development. App extensions give users access to your app’s functionality and content throughout iOS 8 and OS X Yosemite.

Starting in iOS 8.0 and OS X v10.10, an app extension lets you extend custom functionality and content beyond your app and make it available to users while they’re using other apps or the system. You create an app extension to enable a specific task; after users get your extension, they can use it to perform that task in a variety of contexts

Source: Apple App Extensions Document

iOS and OS X define several types of app extensions, each of which is tied to an area of the system, such as:

  • Share
  • Today
  • Photo Editing
  • CustomKeyboard
  • File Provider
  • Document Provider
  • Actions
  • Finder Sync

Please refer Here for more information:

350 questions
0
votes
2 answers

Share extension working on simulator but not on device

I have a share-extension bounded with my app. I have all the required app-ids and provisioning-profiles related to the extension, for both development and distribution. When I run the extension in the simulator, it works perfectly fine. On device…
0
votes
1 answer

Can I create two custom keyboards on one container app

I'm trying to create a container app that holds two custom keyboards. I have already developed the first keyboard. When I added the second keyboard extension I didn't get any errors, but after compiling only the first keyboard appeared. Is there a…
Or Chen
  • 33
  • 4
0
votes
1 answer

iOS: How to terminate extension process from host app?

Everytime the host app changes the settings, the extension don't update its variables because of cache. So, i want to terminate extension process from its host app or somehow to communicate with the extension to change its variables. Is it possible?
TomSawyer
  • 3,711
  • 6
  • 44
  • 79
0
votes
1 answer

Launch iOS extension without UI

I have to share data between iOS Apps without any user interaction. After some googling, I found that the best possible way for doing that is by using Extension. As per Apple extension guide, users open app extension by interacting with some…
DRK
  • 191
  • 9
0
votes
1 answer

IOS CUSTOM KEYBOARD CURSOR MOVEMENT

is it possible to control the cursor movement through custom keyboard I have two traverse buttons on keyboard on clicking them cursor moves in the respective direction. Is it possible to implement ? Please guide !
Queshi Zakir
  • 464
  • 1
  • 6
  • 15
0
votes
2 answers

Integrate ios keyboard extension with native keyboard

I am creating a keyboard extension for ios I just want an scroll strip at the upper part of the keyboard which would be some say some emojis. But i want the native keyboard functioning as usual , jut a view on top of keboardview. Do i need to…
Queshi Zakir
  • 464
  • 1
  • 6
  • 15
0
votes
1 answer

How to add iOS keyboard extension to react native?

Starting with the default React Native project, I followed the guidelines for creating a Keyboard extension and the default Apple code works. But when I add #import to my file and the following is the only code in the extension…
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
1 answer

UICollectionView fixed Content Size

I'm trying to create a keyBoard extension using UICollectionView (i try to use UIButtons but the keyBoard take long time to load so i'm trying to use collection view maybe it will be better). My questions are: what is better: to have a better…
0
votes
0 answers

Custom keyboard: stability

I created some custom keyboard, and although I wasn't able to really test it I have an impression that my keyboard is extremely unstable on device. In some cases it just isn't loaded in app (I have it with Telegram messenger; when my keyboard is…
lithium
  • 1,272
  • 1
  • 14
  • 28
0
votes
1 answer

Action Extension activation rule predicate doesn't hide the action when multiple of the same type is selected

Hello I am trying to make action extension to only work with a single GIF file. Here is my code (created using the snippet provided in Apple's documentation: SUBQUERY ( extensionItems, $extensionItem, SUBQUERY ( …
Gasim
  • 7,615
  • 14
  • 64
  • 131
0
votes
1 answer

How change layout on ios custom keyboard?

I implementing custom keyboard for ios devices. i build a layout for english qwerty and load it when the view is loaded self.keyboard = [[[NSBundle mainBundle] loadNibNamed:@"Keyboard" owner:nil options:nil] objectAtIndex:0]; self.inputView =…
user3428151
  • 449
  • 6
  • 23
0
votes
1 answer

Unable to implement computed property override on UIViewController

When trying to implement this: extension UIViewController { public var presentedViewController: UIViewController? { return UIViewController() } } I'm receiving the following…
solidcell
  • 7,639
  • 4
  • 40
  • 59
0
votes
0 answers

iOS 8 Action Extension Display as Banner

You may have seen Instapaper's iOS 8 extension where, upon saving to Instapaper in Safari, the entire browser is still visible and a banner animates from the top and automatically hides itself. I am trying to do something similar with my action…
Infinity James
  • 4,667
  • 5
  • 23
  • 36
0
votes
2 answers

iOS 9 ShareData between AppGroup through NSUserDefaults

I'm trying to add TodayExtension to my existing app and I want that app and extension will share data through NSUserDefaults. According to this tutorial http://www.glimsoft.com/06/28/ios-8-today-extension-tutorial/ I did like it say: Create new…
Błażej
  • 3,617
  • 7
  • 35
  • 62