Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create custom keyboard like emoji in iOS

I am creating Chat Application. I want enable emoji symbols keyboard in my project. So my question is: is it possible to do this through code?

like image 939
Raj Avatar asked Dec 04 '25 06:12

Raj


2 Answers

you d't create emoji keyboard in ios,simply enable emoji key board in your device ( Enable emoji keyboard )

//only user manually enable emoji keyboard in device
like image 176
NANNAV Avatar answered Dec 05 '25 22:12

NANNAV


If you want to make a keyboard, and need to reproduce the keys in a way close to the system keyboard, I would recommend using https://github.com/acoomans/ACKeyboard

It defines ACKey that you can use as keys for your keyboard. It can save you a lot of trouble.

like image 20
acoomans Avatar answered Dec 05 '25 23:12

acoomans