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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
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. |
|||||||||||
|
|
You could add a UIButton on the superview in the same postion of the keyboard button. |
|||
|
|