国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

iOS開發之UIKeyboardTypeNumberPad數字鍵盤自定義按鍵

2020-07-26 03:15:51
字體:
來源:轉載
供稿:網友

最近做一個搜索用戶的功能,這里使用了UISearchBar。由于搜索的方式只有手機號碼,所以這里的鍵盤要限制為數字輸入,可以這么做:

self.searchBar.keyboardType = UIKeyboardTypeNumberPad;如果使用的不是搜索框而是textField輸入框,可以設置textField的鍵盤屬性來展示 self.textField.keyboardType = UIKeyboardTypeNumberPad;監聽事件如下所示即可。

但是這里有個問題,就是數字鍵盤上面沒有“搜索”按鈕,這樣子用戶在輸入完手機號碼后無法搜索。所以這個時候我們需要自己添加一個自定義的搜索按鈕,然后加到鍵盤上面。

解決思路如下所示:

1.自定義搜索button

2.監聽鍵盤出現的事件

3.遍歷搜索的Windows窗體,找到鍵盤的窗體,然后遍歷其子視圖,找到我們真正需要的鍵盤視圖

4.把我們自定義的按鈕加到上面找到的視圖里

這里要注意的一點,隨著iOS SDK的不斷發展,keyboard的視圖名稱也不斷在更新變化,當你調試以下代碼無法得到期待的效果時,請重新遍歷一次窗臺,然后慢慢調試,找到真正需要的視圖名稱。

解決代碼

1.自定義搜索按鈕

// 搜索按鈕_searchButton = [UIButton buttonWithType:UIButtonTypeCustom];_searchButton.frame = CGRectMake(0, 163, 106, 53);[_searchButton setTitle:@"搜索" forState:UIControlStateNormal];[_searchButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];[_searchButton addTarget:self action:@selector(SearchButtonDidTouch:) forControlEvents:UIControlEventTouchUpInside]; 

2.監聽鍵盤出現的事件

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShowOnDelay:) name:UIKeyboardWillShowNotification object:nil];- (void)keyboardWillShowOnDelay:(NSNotification *)notification {[self performSelector:@selector(keyboardWillShow:) withObject:nil afterDelay:0];}

這里面監聽通知后的執行函數并非立馬執行查找窗體的函數,是因為在iOS4后,鍵盤添加到窗體的事件放到了下一個EventLoop,所以我們采用了延遲的方法。

3. 遍歷視圖,并添加按鈕

- (void)keyboardWillShow:(NSNotification *)notification {UIView *foundKeyboard = nil;UIWindow *keyboardWindow = nil;for (UIWindow *testWindow in [[UIApplication sharedApplication] windows]) {if (![[testWindow class] isEqual:[UIWindow class]]) {keyboardWindow = testWindow;break;}}if (!keyboardWindow) return;for (__strong UIView *possibleKeyboard in [keyboardWindow subviews]) {if ([[possibleKeyboard description] hasPrefix:@"<UIInputSetContainerView"]) {for (__strong UIView *possibleKeyboard_2 in possibleKeyboard.subviews) {if ([possibleKeyboard_2.description hasPrefix:@"<UIInputSetHostView"]) {foundKeyboard = possibleKeyboard_2;}}}}if (foundKeyboard) {if ([[foundKeyboard subviews] indexOfObject:_searchButton] == NSNotFound) {[foundKeyboard addSubview:_searchButton];} else {[foundKeyboard bringSubviewToFront:_searchButton];}}}

以上所述是小編給大家介紹的iOS開發之UIKeyboardTypeNumberPad數字鍵盤自定義按鍵,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 商河县| 洛川县| 濮阳县| 泉州市| 阳西县| 内江市| 东山县| 新野县| 托克托县| 禹州市| 澳门| 江山市| 鄂温| 青海省| 邵阳市| 留坝县| 玉溪市| 洱源县| 青阳县| 威信县| 南城县| 民权县| 思南县| 肥西县| 达尔| 吕梁市| 博白县| 江口县| 大洼县| 娄底市| 宜州市| 班戈县| 泸西县| 大姚县| 沅陵县| 仙游县| 会昌县| 石阡县| 哈巴河县| 泾阳县| 开原市|