I\'ve disabled auto-correction type for my text field, and it does not show any other auto-correction,
but it still automatically creates a dot (.) when I press spac
Perhaps if you hook up a text field delegate and then implement the following method:
-(BOOL)shouldReplaceCharactersInRange:(NSRange)aRage withString:(NSString *)aString
You may be able to check aString for the autocorrected string (maybe @". ") and then just return NO. This will hopefully not allow the @" " to be replaced with @". "