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.
我有一个 UIbutton,当我按下它以使用键盘编辑 UITextView 的内容时,我想。我在互联网上找了很多东西,最后没有找到关于以编程方式编辑 UITextView 的文档。
有可能这样做吗?
UITextView原生支持编辑。试试这个:
UITextView
- (IBAction)clicked:(id)sender { textView.editable = YES; [textView becomeFirstResponder]; }
最佳情况下,您可以使 textView 始终可编辑,或者在按下另一个按钮后关闭编辑。
尝试使用 [textView becomeFirstResponder];