欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS开发中取消文本框输入时的小键盘

程序员文章站 2022-06-09 19:45:50
首先在interface builder中选择textfields,然后在text field attributes中找到text input traits,选择retur...

首先在interface builder中选择textfields,然后在text field attributes中找到text input traits,选择return key为done。ok

定义方法

- (ibaction) textfielddoneediting:(id)sender; //按下done键关闭键盘

实现方法

复制代码 代码如下:

//按完done键以后关闭键盘
- (ibaction) textfielddoneediting:(id)sender
{
[sender resignfirstresponder];
}

然后找到事件did end on exit,与textfielddoneediting关联,ok。

以上所述就是本文的全部内容了,希望大家能够喜欢