启用键盘返回键

时间:2011-03-02 17:50:34

标签: iphone keyboard

我想只在某些uitextfields不为空时启用键盘返回键。 我读了这个问题 How to disable/enable the return key in a UITextField?

这是唯一的方法吗?是否真的会导致Apple拒绝该应用程序?

2 个答案:

答案 0 :(得分:4)

以下内容会自动启用/禁用返回键。

  
      
  • (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {

     textfield.enablesReturnKeyAutomatically = YES;
    
    // your code here
    
      return YES;  }
    
  •   

答案 1 :(得分:0)