Reputation: 6386
In my iPhone application, I want to turn off the caps lock key when my uikeyboard is shown.
Is it possible to do so?
Upvotes: 1
Views: 1483
Reputation: 20163
Any UI control that conforms to the UITextInputTraitsProtocol has a property called autocapitalizationType. Setting this to autocapitalizationTypeNone, either in code or via Interface Builder, will prevent the caps lock key being active when the keyboard for that element is shown.
Upvotes: 3