如何访问表视图单元格中的多个UITextView
我有一个包含多个单元格的表视图,每个单元格包含一个 UITextView。 用户可以编辑他单击的每个文本视图。 但是,当他单击“完成”时,我如何访问每个文本视图,以阅读每个已编辑的内容?
I have a table view with several cells, each containing a UITextView.
The user can edit each text view that he clicks.
But when he clicks DONE, how do I access each text view, to read each that was edited?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 UItextField delegate 从当前提交的文本中获取文本 -
You can use UItextField delegate to get the text from current text filed as -
假设您的 UITextView 名为“tv”
你可以使用类似的东西:
我相信你也可以使用类似的东西:
Let's say your UITextView is called "tv"
You can use something like:
I believe you can also use something along the lines of: