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

Custom Keyboard Crash

I made a custom keyboard. Everything works fine except of two things: (I am using Xcode 7 and am testing the app on my iPhone 5.) When I turn the device from portrait to landscape or the other way round sometimes it does not change the formation…
Xcodone
  • 21
  • 2
0
votes
1 answer

NSUserDefaults with suit name swift

I have created a custom keyboard for ios using swift and i need to add a settings page so i have try to pass data between container application and keyboard application i have added the AppGroups in AppGroup and this is the code i have used in…
Kamal Upasena
  • 1,329
  • 4
  • 13
  • 38
0
votes
1 answer

Is there anyway of opening the container app from an app extension in iOS 8.3?

I have all the editing functionality in the container app of my keyboard extension, and I have a button to open the container app on the keyboard. I was using these methods openURL not work in Action Extension However, in iOS8.3 apple changed his…
vatti
  • 463
  • 7
  • 16
0
votes
1 answer

How to get a list of suggestions for a custom keyboard?

I've been trying to figure out a way to get a list of suggestions for a user inputted text (in multiple languages Not English en-US) ,i already found so many talking around questions here ,but no one figured out the whole solution ,so i am trying to…
Meseery
  • 1,845
  • 2
  • 22
  • 19
0
votes
1 answer

Custom keyboard [e.g. SwiftKeys] calling observer multiple times (iOS8) Issue

I ran the following code in iOS8 using both Apple's Default Keyboards and 3rd Party Keyboards: class ViewController: UIViewController { var checkValue: CGRect? override func viewDidLoad() { super.viewDidLoad() …
0
votes
1 answer

ios 8 custom keyboard Appear with Delay

I have created custom keyboard with Objective c and used nib file for Keyboard design, my issue is that when I Change keyboard to my custom Keyboard it appears with some delay, I tried many scenario but not get any Success. Please help me to resolve…
0
votes
1 answer

custom keyboard implementation for images in android

I want to implement a keyboard just like this one: This application is in Google Play: Gif Keyboard This keyboard can be select from the keyboard list and user can use it from any application. So far i have learnt keyboard preview can be altered…
Fay007
  • 2,707
  • 3
  • 28
  • 58
0
votes
1 answer

Change the return key as 'Continue'

I want to change the 'return' key of iphone virtual key to a completely customized name such as "Continue" instead of "Done". Can we do it? If yes then how? Can I remove the smily button which is marked in red rectangle.
Amit Raj
  • 1,358
  • 3
  • 22
  • 47
0
votes
0 answers

Is it possible to launch containing app from iOS 8 keyboard extension with full access enabled?

I know the Settings app can be launched, but can the containing app be launched from the keyboard extension?
0
votes
1 answer

Swift dismiss custom keyboard strange behaviour

I have the most strange situation with a custom keyboard. First of all, I have set up a dummy view for the textfield, in order to hide the stock keyboard let dummyView : UIView = UIView(frame: CGRect(x: 0, y: 0, width: 1, height: 1))…
Razvan Soneriu
  • 587
  • 3
  • 7
  • 23
0
votes
2 answers

Hide Android soft keyboard and only allow digits on EditText

I have a custom keyboard and don't want to show the Android softkeyboard. this can be achieved by the following code (How to hide Android soft keyboard on EditText): editText.setInputType(InputType.TYPE_NULL); However the EditText should only…
0
votes
0 answers

Sizing tableView XIB to the size of on-screen custom keyboard

I am trying to create a custom keyboard. This keyboard will have a UITableView in it. When I load the keyboard, the bottom of the UITableView runs of the screen. I am using this code to size the UITableView. _tableView = [[UITableView…
spogebob92
  • 1,474
  • 4
  • 23
  • 32
0
votes
1 answer

Pass Bool() value between dfferent swift targets

I'm trying to create a settings view controller in my container app for my customKeyboard for iOS8 in Swift. I have create a Bool() and I got right what I need by that, but now i need to get the Keyboard target checking the bool value and I can't…
Francesco
  • 169
  • 1
  • 1
  • 14
0
votes
1 answer

iOS 8 Custom Keyboard: self.inputView.bounds is still {0,0},{0,0} in viewDidLayoutSubviews in some cases

I'm creating an iOS 8 Custom Keyboard extension primarily using AutoLayout in my XIB. The last step of layout is adding the keyboard keys programmatically. To do this, I need a valid width to properly space keys. Most StackOverflow posts and…
0
votes
0 answers

How to Import objective-c library into keyBoard extension?

I am developing a custom keyBoard which have calendar inside it. So I use THIS obj-c library for calendar and I have done all the necessary steps for importing this library and for testing I display that calendar into the UIView into StoryBoard and…
Dharmesh Kheni
  • 71,228
  • 33
  • 160
  • 165