I have a search bar and I am trying to have words auto capitalize, like this:
- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
{
searchBar.showsCancelButton = YES;
searchBar.autocapitalizationType = UITextAutocapitalizationTypeWords;
}
The shift key is highlighted by default when the keyboard comes up but it doesn't capitalize any words automatically. What am I doing wrong?