中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

IOS學習之 UITextfield

發布時間:2020-06-14 11:40:34 來源:網絡 閱讀:230 作者:lyy201109210 欄目:移動開發

1. UITextFieldDelegate的代理

開始輸入的監聽:

    // return NO to disallow editing.

    - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField;

輸入結束的監聽:

    - (void)textFieldDidEndEditing:(UITextField *)textField;

等等。在這些方法中,添加相應的操作。


2.獲取UITextField輸入內容

[self.accountText addTarget:self action:@selector(input:) forControlEvents:UIControlEventEditingChanged];

- (void) input:(UITextField*)textField {

}


3.監聽鍵盤事件的通知

 [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardWillShow:)

                                                 name:UIKeyboardWillShowNotification

                                               object:nil];

    

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardShow:)

                                                 name:UIKeyboardDidShowNotification

                                               object:nil];

    

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardWillHide:)

                                                 name:UIKeyboardWillHideNotification

                                               object:nil];

    

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardHide:)

                                                 name:UIKeyboardDidHideNotification

                                               object:nil];


- (void)keyboardWillShow:(NSNotification *)notif {

}

- (void)keyboardShow:(NSNotification *)notif {

}

- (void)keyboardWillHide:(NSNotification *)notif {

}

- (void)keyboardHide:(NSNotification *)notif {

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

利津县| 高邑县| 彭泽县| 台中市| 宿州市| 洱源县| 陵水| 普兰店市| 拜城县| 和硕县| 吴堡县| 加查县| 台山市| 缙云县| 拜城县| 绥阳县| 芜湖市| 麻阳| 铜陵市| 唐山市| 仁化县| 汉沽区| 南华县| 岳西县| 平果县| 尼木县| 通化市| 海丰县| 海南省| 华蓥市| 贵南县| 台北市| 洪洞县| 保定市| 东台市| 六安市| 五原县| 晋州市| 鹤庆县| 长寿区| 平原县|