首页 > 代码库 > 让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(0010030)]  
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>