1

I want to copy custom emoction from my iphone app and want to paste in anywhere in textbox inside or outside my application or i can use it in comments on instagram and facebook.I got reference app https://itunes.apple.com/au/app/emoji-for-facebook/id652079241?mt=8 that same i want to apply in my application. can anybody help me,how do i achieve this mechanism? my custom emoticons are stored in collection view as a image.how do i copy image and paste it into comments on social networking.

Shekhar Gupta
  • 6,206
  • 3
  • 30
  • 50
Parvezkhan
  • 381
  • 1
  • 2
  • 15
  • This might be help you - [Does IOS support all Unicode emojies?](http://stackoverflow.com/questions/12140770/does-ios-support-all-unicode-emojies) – TheTiger Aug 14 '13 at 11:53
  • @TheTiger:Thank you for your reply..how to convert image to unicode emoji? – Parvezkhan Aug 14 '13 at 13:38
  • If you are talking about `UIImage to Unicode Character` then NO its not possible. I gave you link for study Mr. Jon Hanna answer and chat discussion too. He has described it please read it carefully. – TheTiger Aug 14 '13 at 14:24
  • @TheTiger:do you have any idea how to crate emoji as a special type of font? so i can display it into my textbox. – Parvezkhan Aug 15 '13 at 05:35
  • [unicode.org](http://unicode.org/) – TheTiger Aug 15 '13 at 07:51

1 Answers1

2

The emoticons used in text are in fact Unicode characters. So the "custom" emoticons are just using a special font, not images. The app you're referencing simply seems to use the same font as the Facebook app.

So the real answer is: you copy and paste them like normal text. And you cannot control how they will look like in other apps, as that is dependent on the font the other app is using.

Community
  • 1
  • 1
DarkDust
  • 90,870
  • 19
  • 190
  • 224