Questions tagged [custom-keyboard]

Relating to a custom keyboard created to override the default onscreen keyboard in a user interface. Also see [ios-app-extension] for iOS Custom Keyboard Extensions.

Use this tag for questions referring to overriding the default keyboard in a user interface. Also see for iOS Custom Keyboard Extensions.

Apple documentation: App Extension Programming Guide

712 questions
0
votes
1 answer

Customize customKeyboard height after loading the view in swift

I'm coding a custom keyboard and i want to customize the height.. Apple Documentation give that code only in Objective-C, does anyone know how to write it in Swift Language? This is the code from Apple: CGFloat _expandedHeight =…
Francesco
  • 169
  • 1
  • 1
  • 14
0
votes
2 answers

Custom keyboard crashing after trying to set the text input as the title of a label in each key

I'm trying my hand at making a custom keyboard while learning Swift. In my keyboard, each key is a separate UIView with a UILabel in it. Each UILabel has a tag of 1. At first I coded each key's input manually, but I decided to optimize the code and…
cyril
  • 3,020
  • 6
  • 36
  • 61
0
votes
0 answers

Custom Keyboard in Android?

It sounds like a very simple question but I couldn't find that much info. If I create my own keyboard (number pad keyboard), how can I set that as my keyboard in Android? This keyboard will only be used for one or two EditText fields. Thank you.
0
votes
1 answer

Get programmatically NSExtensionAttributes dictionary in iOS 8 custom keyboard extension

I'm developing a custom keyboard for iOS 8, and I need to get keyboard language code, i.e "en-US","es-ES" etc. These codes are set in Info.plist file for each extension, in NSExtensionAttributes dictionary (see attached image). How to get…
iOS Dev
  • 4,143
  • 5
  • 30
  • 58
0
votes
1 answer

Can a keybord app run services like regular app? - android

I want to develop a custom keyboard for android (that can be set on Settings > language and input). I want the keyboard app to run several services that will be active all the time. Is it possible? Can a keyboard app run services like any other…
0
votes
1 answer

iOS Keyboard extension: working too much Slow if no full access

I am working on custom keyboard every thing working fine but facing strange issue. i feel that when i press any key of my custom keyboard (if no full access) it fires event with some delay.here is my code - (void)viewDidLoad { [super…
jamil
  • 2,419
  • 3
  • 37
  • 64
0
votes
0 answers

change UIWebView input view with custom

Is it possible to use a custom keyboard with editable UIWebView for rich text editing (by setting inputView property, like on UITextView) ? UIWebView inputView property seems to be readonly. What we can do for such cases ? How we can override that.…
0
votes
1 answer

Qwerty Azerty in custom keyboard ios swift

Is it possible to Add Qwerty and Azerty in custom keyboard for iOS I have a file DefaultKeyboard.swift and i tried to add anything like AzertyKeyboard.swift Thank you on avance
Eliott
  • 9
  • 2
0
votes
2 answers

How to get size of default keyboard for current device without it being displayed?

I am working on custom keyboard extenssion for iOS. The keyboard's size should match that of default system keybaord on each device. For purposes of accompanied app I need to know what is the size of default system keyboard (in portrait and…
Rasto
  • 17,204
  • 47
  • 154
  • 245
0
votes
1 answer

Does anyone know if it is possible to use the Microphone in a custom Keyboard extension in iOS 8?

Does anyone know if it is possible to use the Microphone in a custom Keyboard extension in iOS 8?
rmaroun
  • 23
  • 2
0
votes
1 answer

Using Custom Keyboard in iOS app

Can I use custom keyboard in all my app by creating a single custom keyboard as a static library? Eg: I want to create a custom keyboard and use it in my app A, B and C. How do I do it? Thanks
Smitha
  • 6,110
  • 24
  • 90
  • 161
0
votes
1 answer

iOS8 Swift custom-keyboard button UIimage size problems

I'm trying to create an iOS8 custom keyboard with swifts. So far my app is running well, I just have problems with the size of my UIImage buttons. I'm setting the keyboard size with the following method to 100 pixel: override func…
EmbeddedDesign
  • 343
  • 3
  • 12
0
votes
2 answers

iOS8 keyboard Extension jump to another App

When I want to open App2 in App1, I can do like this: NSURL * myURL_APP_A = [NSURL URLWithString:@"openurl1://"]; if ([[UIApplication sharedApplication] canOpenURL:myURL_APP_A]) { [[UIApplication sharedApplication] openURL:myURL_APP_A]; } But…
SamSam
  • 113
  • 8
0
votes
1 answer

iOS 8 Keyboard Extension: Constraint Error When Call Bar Appears?

I noticed that when I'm on the phone and the green call bar appears at the top of the screen, my custom keyboard won't appear (it's as if it gets skipped). So I debugged it and discovered that it's a constraint error. Here is the error in the…
0
votes
1 answer

iOS custom keyboard rejected since it does not give iPad Support

I submitted an custom keyboard which was rejected by apple for this reason 2.10: iPhone Apps must also run on iPad without modification, at iPhone resolution, and at 2X iPhone 3GS resolution My intention was to develop only for iPhones(but apple…
rootcoder
  • 187
  • 2
  • 13