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
2 answers

Show keyboard in password mode without styling the EditText

I need the keyboard to be shown in the mode similar to the password input type field, but i dont want to specifically set it to that mode for all the Edittext's in the xml. My required type is somewhat similar to the image here: Sample Keyboard…
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

UICollectionViewCell Images Not Appearing in Custom Keyboard

I am having trouble getting my images to load in uicollectionviewcell inside of my custom keyboard. When you create a custom keyboard, you are given a KeyboardViewController.h and KeyboardViewController.m files. Inside of my KeyboardViewController.m…
a2b123
  • 573
  • 1
  • 5
  • 19
0
votes
1 answer

Keyboard Panel to choose diiferent views(Custom)

I need to make a Panel on which I'll be able to switch between different custom keyboard views that i have designed. Something like this My keypad with navigation panel and custom view of my Numeric keypad
0
votes
2 answers

How to have DidSelectRow activate keyboard?

Goal I want to have a keyboard (custom) to show when I click on a cell in my tableview and have said keyboard edit a label in the selected cell. What I have read and tried Stack overflow and other searched threads/tutorials A Swift example of…
TVDN
  • 305
  • 2
  • 11
0
votes
0 answers

iOS - Custom keyboard doesn't show up sometimes, how to fix?

Im' dealing with some really stupid errors. One of them is the keyboard doesn't showing without reasons. Its so annoying. I've read this article here…
TomSawyer
  • 3,711
  • 6
  • 44
  • 79
0
votes
4 answers

Apps that include a custom keyboard extension must have a privacy policy URL

I recently uploaded an app to the app store and it got rejected. The reason for the rejection was. "Apps that include a custom keyboard extension must have a privacy policy URL for [English]. If your app doesn’t provide a custom keyboard, remove…
0
votes
2 answers

How to edit custom keyboard name in keyboard selection menu

I am creating custom keyboard app. When tapping the globe icon to select the Emojis keyboard the option says Emojis two times with a dash between, like this: "Emojis — Emojis”. I want to need just ”Emojis”. See bellow image... Please give me…
Jay Bhalani
  • 4,142
  • 8
  • 37
  • 50
0
votes
0 answers

enable target membership issue on .m file

when i enable keyboard target extension on .m file then this controller give errors like Use of undeclared identifier. i am creating custom keyboard extension on swift and i want add objective c class on keyboard target extension like when i…
ikbal
  • 1,114
  • 1
  • 11
  • 30
0
votes
0 answers

Frame issue in iPad pro of custom keyboard

custom keyboard is properly working Landscape and portrait mode in all iPhone and iPad device and simulator, when run keyboard in iPad Pro then properly work in portrait mode then i go to landscape mode in iPad pro so keyboard frame is ruined in all…
ikbal
  • 1,114
  • 1
  • 11
  • 30
0
votes
2 answers

Change iOS System Keyboard Background Image and Buttons Image

Rather than creating a custom keyboard...how can I change the ios keyboard background image and get reference of the keyboard button or just the keyboard view programatically? I do not want to replicate the whole ios keyboard, just tweak the…
Ariel
  • 2,471
  • 1
  • 26
  • 43
0
votes
1 answer

Creating custom emoji iOS Keyboard

I understand there are 1127 apps about custom emoji keyboard on App Store. Since I wish to not put the exact app idea here, I will give an example. If I wish to build a custom keyboard with custom emojis, is it actually possible? I don't only mean…
ᴛʜᴇᴘᴀᴛᴇʟ
  • 4,466
  • 5
  • 39
  • 73
0
votes
0 answers

How do I paste images programmatically?

Is there any way to programatically paste emoji stickers stored in UICollectionView to the text field when tapped? Here's a link to project for more context: https://itunes.apple.com/us/app/mohgi/id1080153722?mt=8
0
votes
1 answer

Keyboard is not loaded or too slow

My custom keyboard works ok most of the time, but sometimes it is extremely slow to load and sometimes it couldn't be loaded at all (as a result I can't use any keyboard in the affected application because I need to have switching key to switch to…
lithium
  • 1,272
  • 1
  • 14
  • 28
0
votes
1 answer

Menu key for android keyboard

I'm in the process of creating my own keyboard. I need help finding out the android:codes number for the menu button so I can implement the zoom function. Thank you.
Ivan T
  • 1
  • 1