How to show Emoji like skype in ios sdk

2k views Asked by At

I am creating Chat Application. I want enable emoji symbols like skype in my application even thought the Settings -> General ->Keyboard -> Add New Keyboard ->Emoji Was not enabled in device.

keyboad image
I need to display the emoji like the above image. Please suggest me some ideas

2

There are 2 answers

0
cjd On

Yes you can.

Directly assign emoji characters in control.

I have used \ue231 characters emoji as bullet in UITextView and UILabel.

lbltest.text=@"\ue231 Check this out!";

You can refer this link for getting supported emoji characters.