I want to override the emoji icons with my own custom graphics (only within my app).

From what I've read so far, one possible solution is to create a custom font extension which overrides the desired unicode characters. Preferable I would like to maintain inter-operability with CATextLayer.

Edit: Looks like custom fonts won't be my solution; fonts must be defined in gray-scale. Next possibility: Creating a custom CALayer, chunking the string into segments based on emoji code, and doing the type setting + graphics rendering manually (i.e. with core graphics and core text)

Edit: Also looking to maintain smooth scrolling performance in a table views.

link|improve this question

80% accept rate
May be this would help you - stackoverflow.com/questions/1225514/… – Sagar Dec 6 '11 at 7:30
feedback

3 Answers

One solution would be to use the UITextField or TextView delegate and listen to the user's input. When they type an emoji character, pop in a UIImageView inline with the text, and delete the emoji icon with the input.

link|improve this answer
Thanks for the suggestions. Unfortunately, in my case I need to avoid using UIKit objects, as they suffer from choppy scrolling performance . – lorean Nov 28 '11 at 22:05
@lorean If you're getting scrolling performance issues just from including a few UIViews then you are probably doing something ill-advised, like tweaking the backing CALayer. Can you elaborate? – Conrad Shultz Apr 10 at 23:54
Hello Conrad. I've done extensive testing using UIViews in tableCells. I could never get the table cell to scroll perfectly smoothly. There would always been frame skipping and occasionally low overall frame rate. What I do is collapse the view hierarchy into one drawRect:, or more recently creating a composition of CALayers. If you have some sample code of a complicated tableViewCell constructed entirely of UIViews with excellent scrolling performance I would really like to see it! – lorean Apr 11 at 21:54
feedback

There's a few mentions of this issue on Apple's private devforums (which you have access to if you're a registered member of the iOS developer program).

It sounds like the potential solution would be to explicitly set the font for whatever you're trying to display.

link|improve this answer
I have access to the forums, but can't find anything. Even searching for emoji returns zero search results. – lorean Nov 28 '11 at 22:06
Some links could be useful, @Michael? – Emil Dec 2 '11 at 22:33
Hi @Emil... here's one (first couple responses in that thread talk about setting a font); I wonder if the KeyboardEmojiEverywhere plist flag would work within a single application's plist? If it doesn't, I'd recommend filing a feature request at bugreporter.apple.com. – Michael Dautermann Dec 3 '11 at 1:03
feedback

I guess there's no equivalent to NSTextAttachment in UIKit? :|

link|improve this answer
Not available on iOS. – lorean Dec 29 '11 at 17:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.