iOS keyboard with “Go” button instead of return

前端 未结 4 970
情话喂你
情话喂你 2020-12-08 00:02

Is there a way to use the keyboard with \"Go\" key instead of the \"Return\" key like when you are accessing login fields in Safari? I\'m guessing this should be something t

4条回答
  •  温柔的废话
    2020-12-08 00:39

    In Xamarin.iOS or Monotouch is:

    myTextField.ReturnKeyType = UIReturnKeyType.Go;
    

    Possible values are:

       Default
       Go
       Google
       Join
       Next
       Route
       Search
       Send
       Yahoo
       Done
       EmergencyCall
       Continue
    

提交回复
热议问题