views:

56

answers:

2

In iPhone virtual keyboard...

1.Change the alphabetical keypad view to numerical view.

2.Tap on the single quote(') button the view changes to alphabetical.

3.In this view tapping on space twice displays a fullstop.

I don't know whether it is apple bug or feature, How to fix this issue through coding?

Thanks,

+2  A: 

This is not a bug, this is a feature.

(Apple deliberately make pressing ' switch back to the alphabetic plane for contractions like "Peter's".)

(And tapping space twice gives a period is also a feature. It's even documented.)

If you want to modify this feature, the whole UIKBKeyboard class of the keyboard layout needs to be changed at runtime, which means "private API" etc.

KennyTM
after automatically switching back to alphabetic plane, when i tap space twice it display fullstop... is it feature or bug?.
Chandan Shetty SP
@Chandan: See update.
KennyTM