UITextField返回关键文本从“完成”更改为“发布”

时间:2011-08-08 06:23:59

标签: iphone

我创建了一个具有textField的示例应用程序,并且应该完成其返回键类型。我想将文本从“完成”更改为“发布”。

我真的需要这样做。

请帮帮我?提前谢谢。

2 个答案:

答案 0 :(得分:13)

现在苹果只支持这些类型:

typedef enum {
   UIReturnKeyDefault,//Set the text of the return key to “return”.
   UIReturnKeyGo,//Set the text of the return key to “Go”.
   UIReturnKeyGoogle,//Set the text of the return key to “Google”.
   UIReturnKeyJoin,//Set the text of the return key to “Join”.
   UIReturnKeyNext,//Set the text of the return key to “Next”.
   UIReturnKeyRoute,//Set the text of the return key to “Route”.
   UIReturnKeySearch,//Set the text of the return key to “Search”.
   UIReturnKeySend,//Set the text of the return key to “Send”.
   UIReturnKeyYahoo,//Set the text of the return key to “Yahoo”.
   UIReturnKeyDone,//Set the text of the return key to “Done”.
   UIReturnKeyEmergencyCall,//Set the text of the return key to “Emergency Call”.
} UIReturnKeyType;

也许你可以改用send。

答案 1 :(得分:1)

您将获得操作系统中定义的返回键和键盘类型。除非您想尝试破解键盘的视图层次结构以更改该按钮,否则这将是一个非常糟糕的计划。 (此处的标准建议是向Apple提交错误报告,让他们知道您需要更多/不同的选项。