クリックしても編集可能にならないテキストフィールドをプログラムで作成しました。私は何を間違っていますか?
CGRect frame3 = CGRectMake(100, 730, 100, 30);
UITextField *textfield3 = [[UITextField alloc] initWithFrame:frame3];
textfield3.borderStyle = UITextBorderStyleRoundedRect;
textfield3.textColor = [UIColor blackColor];
[self.view endEditing:YES];
[self.view addSubview:textfield3];