I need to add a button to UIKeyboard
in the place of Return key and also need to raise events for that customized button for iPhone using MonoTouch.
How to change the return key of UIKeyboard with customized button for iPhone using MonoTouch?
6.7k views Asked by KiShOrE At
2
Take a look at the UITextInputTraits protocol. It defines a returnKeyType (UIReturnKeyType) which can be
The UITextField and UITextView classes support this protocol. I don't think you can customize it further unless you do some very hacky stuff.
If you have a UITextField then you can implement
and if you have a UITextView you can implement
both delegate methods, to determine the behaviour on return.