Created
February 8, 2009 23:39
-
-
Save soffes/60566 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)enableEmoji { | |
NSString *filePath = @"/private/var/mobile/Library/Preferences/com.apple.Preferences.plist"; | |
NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath]; | |
[plistDict setValue:@"1" forKey:@"KeyboardEmojiEverywhere"]; | |
[plistDict writeToFile:filePath atomically:NO]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment