Making an emoji-enabeling app for the iPhone
Asked Answered
A

2

4

I know they sell a lot of apps in the App Store that claim to "unlock" emoji keyboards. How would I go about doing this?

I want to made an app that enables emoji keyboards. I have paid the 100 dollar developers license fee if this makes a difference.

Aloft answered 4/8, 2009 at 2:41 Comment(0)
P
21

Based on one of the samples provided in the links above you can do the following:

NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:
                  @"../../Library/Preferences/com.apple.Preferences.plist"];
NSMutableDictionary *dict =
    [NSMutableDictionary dictionaryWithContentsOfFile:path];
[dict setObject:[NSNumber numberWithBool:YES] forKey:@"KeyboardEmojiEverywhere"];
[dict writeToFile:path atomically:NO];
Pigg answered 6/8, 2009 at 14:55 Comment(2)
Still works with iOS 4+ but you have to kill the settings application for the Emoji keyboard to appear in the "Add New Keyboard" list.Schenk
is we need to add image for new emoji? or we have to use unicodes to create different emoji?Cheeseburger
A
2

See iPhone devs, access Emoji for free with Freemoji.

Astrology answered 4/8, 2009 at 15:9 Comment(2)
While this tells you that you CAN enable emjoii's using Apps purchased from the App Store, it doesn't answer this question by telling you HOW to do in code by yourself...Rebarbative
He links to three different examples of how to implement it? What more do you really want?Astrology

© 2022 - 2024 — McMap. All rights reserved.