Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/iphone/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Iphone UITextField返回键文本更改自";“完成”;至;邮政「;_Iphone - Fatal编程技术网

Iphone UITextField返回键文本更改自";“完成”;至;邮政「;

Iphone UITextField返回键文本更改自";“完成”;至;邮政「;,iphone,Iphone,我创建了一个示例应用程序,该应用程序具有textField,其返回键类型应该完成。我想把文本从“完成”改为“发布” 我真的需要这么做 请帮帮我?提前感谢。您将获得操作系统中定义的返回键和键盘类型。除非你想尝试破解键盘的视图层次结构来改变这个按钮,否则这将是一个非常糟糕的计划。(这里的标准建议是向Apple提交错误报告,让他们知道您想要更多/不同的选项。现在Apple只支持以下类型: typedef enum { UIReturnKeyDefault,//Set the text of th

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

我真的需要这么做


请帮帮我?提前感谢。

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

现在Apple只支持以下类型:

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。

好的。如果我可以在这里提到的uikeyboard中添加uibutton的子视图……那么苹果可以拒绝我的应用程序吗?