IOS 中点击(return)键隐藏键盘代码

来源:互联网 发布:淘宝名称解释大全 编辑:程序博客网 时间:2024/05/27 20:10

IOS 中点击(return)键隐藏键盘代码

1
2
3
4
5
6
- (BOOL)textFieldShouldReturn:(UITextField *)theTextField{
    if (theTextField == self.textField) {
        [theTextField resignFirstResponder];
    }
    return YES;
}
0 0
原创粉丝点击