iPhone開発に置いて、キーボード入力をデフォルトのキーボードではなく、個別に用意したものと切り替え可能にする 1.UITextView, UITextFieldのinputViewに置き換えたいviewを設定 UITextField* textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 10, bounds.size.width - 20, 30)]; textField.borderStyle = UITextBorderStyleRoundedRect; CustomKeyboard* keyboard = [[CustomKeyboard alloc] initWithFrame:CGRectMake(0, 0, bounds.size.width, 200)]; textField.inputView =