輸入法拼音9鍵相關實現: http://s.pudn.com/search_hot.asp?k=T9+%CA%E4%C8%EB%B7%A8#
App與Extensions間通信共享數據 :http://www.3lian.com/edu/2015/05-04/209793.html
http://www.cocoachina.com/ios/20150417/11597.html
APP間傳遞消息的類庫:
MMWormhole
github 下載地址:https://github.com/mutualmobile/MMWormhole
使用APP Group的時候一定要去設置里面把用戶訪問打開,否則不能夠訪問文件,導致讀寫和消息傳遞都會失敗
App Extension編程指南(iOS8/OS X v10.10):擴展類型--自定義鍵盤
官方文檔中文翻譯:http://www.cocoachina.com/ios/20140918/9677.html
擴展應用如何工作:https://developer.apple.com/library/content/documentation/General/Conceptual/ExtensibilityPG/ExtensionOverview.html
谷歌翻譯地址:
https://translate.google.com.hk/translate?hl=zh-CN&sl=en&tl=zh-CN&u=https%3A%2F%2Fdeveloper.apple.com%2Flibrary%2Fcontent%2Fdocumentation%2FGeneral%2FConceptual%2FExtensibilityPG%2FAction.html
iOS Keyboard Extension 開發過程遇到的坑:
http://www.cnblogs.com/YungMing/p/5093307.html
VE輸入法安卓源碼:https://github.com/WiInputMethod/VE
按鍵時播放音效
要播放的輸入點擊在自定義的輸入或鍵盤附件視圖的關鍵水龍頭,首先確保視圖采用UIInputViewAudioFeedback協議中所述采用UIInputViewAudioFeedback協議 。 然后,要提供咔嗒聲,叫每個抽頭playInputClick該方法UIDevice類,如下所示:
- (void)playClickForCustomKeyTap {
[[UIDevice currentDevice] playInputClick];
}}
系統自動管理用于自定義輸入點擊的音頻會話,包括根據需要的音頻低音。 (有關音頻會話的信息,請參見音頻會話編程指南 。)