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.
iOSでUITextViewをタッチしたときに、キーボードを表示したくありません。どうやってやるの?
UITextView を編集不可にすることができます。
UITextView* tv = [[UITextView alloc] init]; [tv setEditable:NO];
UITextView をサブクラス化し、「-(BOOL)canBecomeFirstResponder」をオーバーライドして、NO を返すことができます。