I am creating ViewBased Project, Just in ViewController's ViewDidLoad, I am writting the following code
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
UITextField *name_textField = [[UITextField alloc] initWithFrame:CGRectMake(110, 21, 200, 30)];
name_textField.delegate=self;
name_textField.keyboardType = UIKeyboardTypeASCIICapable;
name_textField.autocorrectionType = UITextAutocorrectionTypeNo;
[name_textField setBorderStyle:UITextBorderStyleRoundedRect];
[name_textField resignFirstResponder];
[self.view addSubview:name_textField];
[super viewDidLoad];
}
As I do run on simulator, it will show first character capital in textField and also shift key is press, but as I run it on device (iPod Touch 4g, iOS 5), it is not doing any capitalization.
It is strange behavior, can any one tell me reasons and how to solve it?