UITextView - 使用 UITableViewCell() 中选择的所有文本开始编辑
Posted
技术标签:
【中文标题】UITextView - 使用 UITableViewCell() 中选择的所有文本开始编辑【英文标题】:UITextView - Begin Editing With All Text Selected In UITableViewCell() 【发布时间】:2017-03-15 05:45:01 【问题描述】:我有一个带有对象TaskCell
的tableView,它是UITableViewCell
的子类
textView
在TaskCell
中,一切正常,除了我无法让这行代码选择文本视图中的所有文本,因此用户可以根据需要立即覆盖文本。就像您在按住文本后点击“全选”一样。
textView.selectedTextRange = textView.textRange(from: textView.beginningOfDocument, to: textView.endOfDocument)
_
// All code relating to textView
class TaskCell: UITableViewCell
@IBOutlet weak var textView: UITextView! didSet initTextView()
fileprivate func initTextView()
textView.delegate = self
extension TaskCell: UITextViewDelegate
func textViewDidBeginEditing(_ textView: UITextView)
textView.selectedTextRange = textView.textRange(from: textView.beginningOfDocument, to: textView.endOfDocument)
// class ListViewController: ViewController, UITableViewDataSource, UITableViewDelegate
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! TaskCell
return cell
【问题讨论】:
【参考方案1】:你有两个选择:
[yourtextView selectAll:nil]; //highlights text
[yourtextView selectAll:self]; //highlights text and shows menu(cut copy paste)
在你的情况下,这将解决它:
- (BOOL)textViewDidBeginEditing:(UITextView *)textView
dispatch_async(dispatch_get_main_queue(), ^
[textView selectAll:nil];
);
return YES;
Swift 3.0
func textViewDidBeginEditing(_ textView: UITextView)
DispatchQueue.main.async
textView.selectAll(nil)
【讨论】:
它对我来说很简单,你应该在你有i.stack.imgur.com/sGdSf.png的情况下应用它 它例如在 textViewDidChange 中工作,只要我输入一些内容,它就会突出显示所有文本。但只是不在 textViewDidBeginEditing 中。 DispatchQueue.main.async 修复了它!在 shouldBeginEditing 的情况下,它会在 textViewDidEndEditing 上导致一些奇怪的无限循环错误。 再次感谢@Alsh 编译器以上是关于UITextView - 使用 UITableViewCell() 中选择的所有文本开始编辑的主要内容,如果未能解决你的问题,请参考以下文章
在 UITableViewCell 中的 UITextView 上使用 CAGradientLayer
使用 swift (IOS 应用程序) 自动滚动 UITextView
使用不可见的 UILabel 并触发 UITextView 事件或不使用 UILabel 并处理 UITextView 点击识别器