鍵盤樣式風格設定及隱藏

2022-08-09 06:57:11 字數 1046 閱讀 7350

一、鍵盤風格   

uikit框架支援8種風格鍵盤。

typedef 

enum

uikeyboardtype;  

用法用例:

textview.keyboardtype = uikeyboardtypenumberpad;

二、鍵盤外觀

typedef 

enum

uireturnkeytype;  

用法用例:

textview.returnkeytype=uireturnkeygo;

四、自動大寫

typedef 

enum

uitextautocapitalizationtype;  

用法用例:

textfield.autocapitalizationtype

= uitextautocapitalizationtypewords

;五、自動更正

typedef 

enum

uitextautocorrectiontype;  

用法用例:

textfield

.autocorrectiontype

= uitextautocorrectiontypeyes

;六、安全文字輸入

textview.securetextentry=yes;

開啟安全輸入主要是用於密碼或一些私人資料的輸入,此時會禁用自動更正和自此快取。

那麼如何設定鍵盤型別呢?

接下來,請看:

在textviewdelegate的這個方法設定:

// return no to disallow editing.

- (bool)textfieldshouldbeginediting:(uitextfield *)textfield

-(bool) textfieldshouldreturn:(uitextfield *)textfield

鍵盤樣式風格設定

一 鍵盤風格 uikit框架支援8種風格鍵盤。typedefenumuikeyboardtype 用法用例 textview.keyboardtype uikeyboardtypenumberpad 二 鍵盤外觀 typedefenumuireturnkeytype 用法用例 textview.re...

鍵盤樣式風格設定

一 鍵盤風格 uikit框架支援8種風格鍵盤。typedefenumuikeyboardtype 用法用例 textview.keyboardtype uikeyboardtypenumberpad 二 鍵盤外觀 typedefenumuireturnkeytype 用法用例 textview.re...

IOS鍵盤樣式風格有關設定

一 鍵盤風格 uikit框架支援8種風格鍵盤。uikeyboardtype 用法用例 textview.keyboardtype uikeyboardtypenumberpad 二 鍵盤外觀 uireturnkeytype 用法用例 textview.returnkeytype uireturnke...