Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はUITextViewを使ってアプリに取り組んでいます。returnキーボードのキーをキーに置き換えたいDone。私はそのコードを見つけましたが、それはUITextViewではなくUITextField用です。
returnKeyTypeプロパティでリターンキーを変更できます
returnKeyType
UITextView *textview = [[UITextView alloc] initWithFrame:CGRectMake(0.f, 0.f, 120.f, 40.f)]; textview.returnKeyType = UIReturnKeyDone; [self.view addSubview:textview];
よろしく、 KL94