首页 > 代码库 > 让textField弹出键盘中的return按钮设置为灰色不可点击
让textField弹出键盘中的return按钮设置为灰色不可点击
<style type="text/css" isprelink="true">@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);</style><style type="text/css">@import url(/css/cuteeditor.css);</style>效果图:
textField弹出键盘中的return按钮为灰色不可点击
1
2 UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 100, 30)]
3 textField.returnKeyType = UIReturnKeySearch; //设置按键类型
4 textField.enablesReturnKeyAutomatically = YES; //这里设置为无文字就灰色不可点
2 UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 100, 30)]
3 textField.returnKeyType = UIReturnKeySearch; //设置按键类型
4 textField.enablesReturnKeyAutomatically = YES; //这里设置为无文字就灰色不可点
TextField内无文字,不可点击:
当TextField内有文字,按钮可点击:
<style type="text/css" isprelink="true">@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);</style><style type="text/css">@import url(/css/cuteeditor.css);</style>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。