鍵盤迴收事件

函數

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

    UITouch *touch = [touches anyObject] ;

    if (![touch.viewisMemberOfClass:[UITextFieldclass]]) {

        [self.textresignFirstResponder] ;

    }

}



設置鍵盤的顏色 系統默認提供了四種:

 text.keyboardAppearance=UIKeyboardAppearanceDark;

 text.keyboardAppearance=UIKeyboardAppearanceAlert;

 text.keyboardAppearance=UIKeyboardAppearanceDefault;

 text.keyboardAppearance=UIKeyboardAppearanceLight;

typedef enum {
UIKeyboardAppearanceDefault, 默認外觀,淺灰色
UIKeyboardAppearanceAlert,   深灰 石墨色
} UIReturnKeyType;

發佈了27 篇原創文章 · 獲贊 5 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章