Making An Emoji Enabeling App

我只是一个虾纸丫 提交于 2019-11-26 10:29:42

问题


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!


回答1:


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];



回答2:


http://arstechnica.com/apple/news/2009/02/freemoji-access-emoji-for-free.ars

Not a very tough google search actually...



来源:https://stackoverflow.com/questions/1225514/making-an-emoji-enabeling-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!