iOS Keyboard always starts in uppercase mode

Monkey Targets Forums/iOS/iOS Keyboard always starts in uppercase mode

Difference(Posted 2012) [#1]
I'd like a way to control if iOS keyboard starts with uppercase or not.

When editing existing text, it is non-intuitive that the keybord writes uppercase by default (because the internal textbox is empty I guess)

I found a simple hack that seems to start the keyboard in lowercase mode, but I have no idear if this breaks anything.

If I change textField.text=@" "; to textField.text=@" SOMERANDOMCHARSHERE"; in int gxtkInput::SetKeyboardEnabled I get lowercase letters by default.

Is there a better way?

Also it would be great if the intelligent CamelCase in the iOS soft keyboard could be used.
Mostly because this seems to be what users expect and are used to.

Maybe the keyboard function could have it's own readable/writable string buffer?