Enhancement in GIF keyboard - ios

At present I am working on GIF keyboard plugin for iOS.
Following github link give me good start to move ahead.
SamStone92/kanyekeyboad
I want to put my custom emojies over custom keyboard. Using above reference project I can able to achieve same thing but in this there is one problem exist and that is very frustrating for end user.
Problem: To place any emoji into text area, first you need to click on emoji from keyboard then Copy button is available for you, you need to press that.
Then you need to touch on text area, at that time another button with label Paste is available on screen. You need to press this button to get actual emoji in text area. I want to remove this.
Following image gives you more idea:
Target: I want to implement, you just need to touch on keyboard emoji and it will directly paste on text area. Like we are doing in Skype or any other messaging application.

Related

How can I implement text selection while dragging mouse pointer in MacCatalyst application?

I'm looking to implement something similar in my Mac-Catalyst application, where I want the user to be able to select text from UILabel using their mouse pointer to be able to copy and paste it within the application.
I want the user to be able to select specific text and not just implement the whole text to be copied which is what the current implementation is using a tapGestureRecognizer.

Custome keyboard show pop up image cut off

I am working in custom keyboard app.
When long press in my emojis it's not open in above textField. it's display in bellow iMessage keyboard. see below screen shot.
it's possible to add my image open in above textField.like iOS default emojis.
if it's possible then give me solution, Thanks.

resignFirstResponder() in Third-Party Keyboards

I have a third party keyboard that currently contains a UISearchBar(that is first responder on start) and the user is able to search for content (i.e. gifs) to be able to copy, paste, send to friends, etc.
In theory, after entering text in the bar and pressing search, the user should be able to enter text in the application's actual UITextView (i.e. the message field in the messages app) but for some reason this doesn't work and although typing works, nothing actually appears.
I have tried searchBar.resignFirstResponder(), self.becomeFirstResponder() and many combinations of .endEditing(true) to no avail.
I know it is possible to do this as apps like Giffy do it but I can't figure it out for the life of me.
Any help would be greatly appreciated.
Keyboard extensions with built-in search bars usually implement their search bar as a UILabel, adding custom text handling behavior that modifies the text property of the label based on user input.

Custom emoticon keyboard IOS

I am currently in the process of building a custom keyboard for IOS devices and wanted to add a custom EMOJI keyboard as well. I have a sheet of custom emoticons already created and do not want the user to have to copy and paste into their message like on the Ikea Emoticon keyboard. Is it possible to have a clone of apples keyboard functionality but with my own emoticons?
If you have something similar like below (emoticon icon)
You can make a slideout UIView with a bunch of your custom emojis using UICollectionView. If the user taps on an emoji it would insert your own Unicode Emoji Text (just example).
You will have to make your own if statements if the text contains emoji unicode to make the emojis appear in your text.
This is how I understand it, I might be wrong, if so, please correct me. :)

Corona sdk text input

I have looked at example code that uses the native textField on Android. I would like to be able to type into the text field without having to touch a button to show the text field, and then touch inside the text field to start typing. Is there a way to show the text field and set focus to it, where I can start typing without touching other buttons. I am working on an app and I don't want the users to have to take extra steps to begin typing text. Thanks for any advice.
You can call native.setKeyboardFocus(yourField) to show the keyboard.
http://docs.coronalabs.com/api/library/native/setKeyboardFocus.html

Resources