iOS 判斷是第三方軟鍵盤(第三方輸入法)還是原生軟鍵盤(原生輸入法)

最近在做一個(gè)富文本編輯器的功能,里面牽扯到一些原生洼冻、第三方軟鍵盤的判斷處理邏輯.我是這樣做的:

? ? 在

? ? ?func keyboardWillShow(notification:NSNotification){

????? ??????//判斷是原生輸入法 還是第三方輸入法

? ? ????? ? let key = UIKeyboardInputModeController.sharedInputModeController() as! UIKeyboardInputModeController

? ? ? ? ? ? let currentInputMode = key.currentInputMode()

? ? ? ? ????let extensionInputModes = key.extensionInputModes()as!NSArray

????? ? ? ? if extensionInputModes .contains(currentInputMode) {

????????? ? ? ? ? ? ????//第三方鍵盤

? ? ????????????? ? }else{

? ? ? ? ? ? ? ? ? ?????//原生鍵盤

? ? ? ? ? ? ? ? ? ?}

????}

? ? 這個(gè)方法也會(huì)隨著你點(diǎn)擊小地球,即切換輸入法(并不是拼音、五筆眼坏、拼音等)的響應(yīng)而一直響應(yīng)的!

? ? 以上用到的UIKeyboardInputModeController樟凄、UIKeyboardInputMode這兩個(gè)類,樓主也是在網(wǎng)上淘的,復(fù)制如下:(OC寫的)

#ifndef TestDeterminKeyboard_UIKeyboardInputMode_h

#define TestDeterminKeyboard_UIKeyboardInputMode_h

#import

@class NSString, NSArray;

@interfaceUIKeyboardInputMode :UITextInputMode{


}

@property (nonatomic,copy) NSString * identifier;

@property (nonatomic,readonly) NSString * primaryLanguage;

@property(nonatomic,copy)NSString* softwareLayout;

@property(nonatomic,copy)NSString* hardwareLayout;

@property(nonatomic,readonly)NSArray* normalizedIdentifierLevels;

//+(id)keyboardInputModeWithIdentifier:(id)arg1 ;

//+(id)canonicalLanguageIdentifierFromIdentifier:(id)arg1 ;

//+(id)softwareLayoutFromIdentifier:(id)arg1 ;

//+(id)hardwareLayoutFromIdentifier:(id)arg1 ;

//-(void)dealloc;

//-(id)initWithCoder:(id)arg1 ;

//-(void)encodeWithCoder:(id)arg1 ;

//-(BOOL)isEqual:(id)arg1 ;

//-(id)hardwareLayout;

//-(id)identifier;

//-(id)initWithIdentifier:(id)arg1 ;

//-(void)setIdentifier:(id)arg1 ;

//-(id)primaryLanguage;

//-(void)setPrimaryLanguage:(id)arg1 ;

//-(void)setSoftwareLayout:(id)arg1 ;

//-(void)setHardwareLayout:(id)arg1 ;

//-(id)normalizedIdentifierLevels;

//-(id)softwareLayout;

@end

@interfaceUIKeyboardInputModeController :NSObject{


? ? UIKeyboardInputMode* _currentInputMode;

? ? NSArray* _inputModesWithoutHardwareSupport;

? ? NSString* currentLocale;

? ? NSString* currentLanguage;

? ? NSArray* keyboardInputModes;

? ? NSArray* enabledInputModes;

? ? NSArray* normalizedInputModes;

? ? NSArray* defaultKeyboardInputModes;

? ? NSArray* defaultRawInputModes;

? ? NSArray* defaultInputModes;

? ? NSArray* defaultNormalizedInputModes;

? ? NSString* _inputModeContextIdentifier;


}

+ (id)sharedInputModeController;

- (id)_MCFilteredExtensionIdentifiers;

- (void)_clearAllExtensionIfNeeded;

- (void)_setCurrentInputMode:(id)arg1 force:(BOOL)arg2;

- (id)_systemInputModePassingTest:(id)arg1;

- (id)activeInputModeIdentifiers;

- (id)activeInputModes;

- (id)allowedExtensions;

- (BOOL)containsDictationSupportedInputMode;

- (id)currentInputMode;

- (id)currentInputModeInPreference;

- (BOOL)currentLocaleRequiresExtendedSetup;

- (id)currentPublicInputMode;

- (id)currentSystemInputMode;

- (id)currentUsedInputMode;

- (void)dealloc;

- (id)defaultEnabledInputModesForCurrentLocale:(BOOL)arg1;

- (id)defaultInputModes;

- (id)defaultKeyboardInputModes;

- (id)defaultNormalizedInputModes;

- (id)defaultRawInputModes;

- (id)delegate;

- (BOOL)deviceStateIsLocked;

- (void)didEnterBackground:(id)arg1;

- (id)enabledInputModeIdentifiers:(BOOL)arg1;

- (id)enabledInputModeIdentifiers;

- (id)enabledInputModeLanguages;

- (id)enabledInputModes;

- (id)extensionInputModes;

- (id)hardwareInputMode;

- (BOOL)identifierIsValidSystemInputMode:(id)arg1;

- (id)identifiersFromInputModes:(id)arg1;

- (id)init;

- (id)inputModeContextIdentifier;

- (id)inputModeWithIdentifier:(id)arg1;

- (id)inputModesWithoutHardwareSupport;

- (id)keyboardInputModeIdentifiers;

- (id)keyboardInputModes;

- (id)lastUsedInputMode;

- (id)nextInputModeFromList:(id)arg1 withFilter:(unsignedint)arg2 withTraits:(id)arg3;

- (id)nextInputModeInPreferenceListForTraits:(id)arg1;

- (id)nextInputModeToUse;

- (id)nextInputModeToUseForTraits:(id)arg1;

- (id)normalizedEnabledInputModeIdentifiers;

- (id)normalizedInputModes;

- (void)performWithForcedExtensionInputModes:(id)arg1;

- (void)performWithoutExtensionInputModes:(id)arg1;

- (id)preferredLanguages;

- (void)setCurrentInputMode:(id)arg1;

- (void)setCurrentInputModeInPreference:(id)arg1;

- (void)setCurrentUsedInputMode:(id)arg1;

- (void)setDefaultInputModes:(id)arg1;

- (void)setDefaultKeyboardInputModes:(id)arg1;

- (void)setDefaultNormalizedInputModes:(id)arg1;

- (void)setDefaultRawInputModes:(id)arg1;

- (void)setDelegate:(id)arg1;

- (void)setEnabledInputModes:(id)arg1;

- (void)setInputModeContextIdentifier:(id)arg1;

- (void)setKeyboardInputModeIdentifiers:(id)arg1;

- (void)setKeyboardInputModes:(id)arg1;

- (void)setLastUsedInputMode:(id)arg1;

- (void)setNextInputModeToUse:(id)arg1;

- (void)setNormalizedInputModes:(id)arg1;

- (void)startConnectionForFileAtURL:(id)arg1 forInputModeIdentifier:(id)arg2;

- (void)startDictationConnectionForFileAtURL:(id)arg1 forInputModeIdentifier:(id)arg2;

- (id)suggestedInputModesForCurrentLocale:(BOOL)arg1 fallbackToDefaultInputModes:(BOOL)arg2;

- (id)suggestedInputModesForCurrentLocale;

- (id)suggestedInputModesForPreferredLanguages;

- (id)supportedInputModeIdentifiers;

- (void)switchToCurrentSystemInputMode;

- (void)updateCurrentAndNextInputModes;

- (void)updateCurrentInputMode:(id)arg1;

- (void)updateLastUsedInputMode:(id)arg1;

- (BOOL)verifyKeyboardExtensionsWithApp;

@end

#endif

????自己建一個(gè)這樣的類,粘貼以上代碼.在使用處倒入頭文件,即可直接使用!

? ? 不過在這里值得提一句的是:UIKeyboardInputMode這個(gè)屬于私有Api,上架時(shí)審核會(huì)被拒絕!

? ? 最后用的方法是:

? ? NSString *currentKeyboardName = [[[[UITextInputMode activeInputModes] filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"isDisplayed = YES"]] lastObject] valueForKey:@"extendedDisplayName"];

? ? if([currentKeyboardNameisEqualToString:@"簡體拼音"] || [currentKeyboardNameisEqualToString:@"表情符號(hào)"] || [currentKeyboardName isEqualToString:@"English (US)"]) {

? ? ? ? //系統(tǒng)自帶鍵盤

? ? ? ? returnYES;

? ? }else{

? ? ? ? //第三方鍵盤

? ? ? ? returnNO;

? ? }

? ? 如有什么不會(huì)的地方,請(qǐng)各位大神指出!??????

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末模叙,一起剝皮案震驚了整個(gè)濱河市纬向,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌伤靠,老刑警劉巖捣域,帶你破解...
    沈念sama閱讀 211,290評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異宴合,居然都是意外死亡焕梅,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門卦洽,熙熙樓的掌柜王于貴愁眉苦臉地迎上來贞言,“玉大人,你說我怎么就攤上這事阀蒂∥献郑” “怎么了打肝?”我有些...
    開封第一講書人閱讀 156,872評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長挪捕。 經(jīng)常有香客問我,道長争便,這世上最難降的妖魔是什么级零? 我笑而不...
    開封第一講書人閱讀 56,415評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮滞乙,結(jié)果婚禮上奏纪,老公的妹妹穿的比我還像新娘。我一直安慰自己斩启,他們只是感情好序调,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評(píng)論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著兔簇,像睡著了一般发绢。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上垄琐,一...
    開封第一講書人閱讀 49,784評(píng)論 1 290
  • 那天边酒,我揣著相機(jī)與錄音,去河邊找鬼狸窘。 笑死墩朦,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的翻擒。 我是一名探鬼主播氓涣,決...
    沈念sama閱讀 38,927評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼陋气!你這毒婦竟也來了劳吠?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,691評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤恩伺,失蹤者是張志新(化名)和其女友劉穎赴背,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體晶渠,經(jīng)...
    沈念sama閱讀 44,137評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡凰荚,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評(píng)論 2 326
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了褒脯。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片便瑟。...
    茶點(diǎn)故事閱讀 38,622評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖番川,靈堂內(nèi)的尸體忽然破棺而出到涂,到底是詐尸還是另有隱情脊框,我是刑警寧澤,帶...
    沈念sama閱讀 34,289評(píng)論 4 329
  • 正文 年R本政府宣布践啄,位于F島的核電站浇雹,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏屿讽。R本人自食惡果不足惜昭灵,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望伐谈。 院中可真熱鬧烂完,春花似錦、人聲如沸诵棵。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽履澳。三九已至嘶窄,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間奇昙,已是汗流浹背护侮。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留储耐,地道東北人羊初。 一個(gè)月前我還...
    沈念sama閱讀 46,316評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像什湘,于是被迫代替她去往敵國和親长赞。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容