何らかの理由で、私の UITextFields はどれも自動大文字化されません。以下に示すように、InterfaceBuilder とプログラムでプロパティを設定しました。
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"search_cell"];
UITextField *tf = [[UITextField alloc] initWithFrame:CGRectMake(12, 10, 320, 32)];
tf.autocapitalizationType = UITextAutocapitalizationTypeWords;
tf.returnKeyType = UIReturnKeySearch;
tf.font = [UIFont boldSystemFontOfSize:20.0];
tf.delegate = self;
[cell addSubview:tf];
[tf becomeFirstResponder];
とにかく、気付かずにアプリ全体で自動大文字化を無効にするフラグを設定できたのでしょうか?
ありがとう