I know they sell a lot of apps in the app store that claim to "unlock" emoji keyboards. Do you know how I would go about doing this? I want to made an app that enables emoji keyboards. I have payed the 100 dollar developers license fee if this makes a difference. Thanks!
A:
http://arstechnica.com/apple/news/2009/02/freemoji-access-emoji-for-free.ars
Not a very tough google search actually...
Lounges
2009-08-04 15:09:25
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...
Jasarien
2009-08-04 17:12:23
He links to three different examples of how to implement it? What more do you really want?
Lounges
2009-08-05 16:31:03
+4
A:
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];
notnoop
2009-08-06 14:55:10