Is there a way to set the autocapitalizationType for a UITextField so that the first letter of each word is capitalized by default?
UITextField
This Is A
In Xamarin.ios / Monotouch this worked for me:
textField.AutocapitalizationType = UITextAutocapitalizationType.Words;