光标未出现在UITextView iOS中

时间:2017-10-15 04:12:11

标签: ios cursor uitextview caret

我有一个可扩展的tableViewCell,带有几个UITextFields,一个UILabel和一个UITextView。当tableView展开时,标签消失,并出现UITextFields和UITextView。在两个UITextField中都会​​出现光标但在UITextView中没有出现光标。我已经尝试更改色调颜色并且没有任何显示,但是当我选择文本(确实出现)时,文本以色调颜色突出显示并且可见。我也试过改变框架但是没有用。此外,我现在将它设置为常规UITextView,除了框架之外没有任何属性的更改。 textView是使用UITableViewCell类以编程方式设置的,一切似乎都可以工作但光标。

以下是我如何设置UITextView:

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! StudentTableViewCell

    cell.infoView.frame = CGRect(x: 23, y: 207, width: cell.frame.width - 36, height: cell.frame.height - 155)
    cell.infoView.delegate = self
    cell.infoView.text = classes[indexPath.row].info
    cell.infoView.layer.cornerRadius = 5
    cell.infoView.layer.masksToBounds = true

    cell.placeholderField.frame = CGRect(x: 32, y: 92, width: self.view.frame.width - 38, height: 45)
    if cell.infoView.text!.replacingOccurrences(of: " ", with: "") == "" {
        cell.placeholderField.placeholder = "Description"
    } else {
        cell.placeholderField.placeholder = ""
    }
    cell.placeholderField.backgroundColor = UIColor.clear

    cell.nameField.frame = CGRect(x: 23, y: 3, width: cell.frame.width - 70, height: 44)
    cell.nameField.text = classes[indexPath.row].name
    cell.nameField.delegate = self
    cell.nameField.layer.cornerRadius = 5
    cell.nameField.layer.masksToBounds = true
    cell.nameField.borderStyle = .roundedRect

    cell.teacherField.frame = CGRect(x: 23, y: 50, width: cell.frame.width - 36, height: 44)
    cell.teacherField.text = classes[indexPath.row].teacher.name
    cell.teacherField.delegate = self
    cell.teacherField.layer.cornerRadius = 5
    cell.teacherField.layer.masksToBounds = true
    cell.teacherField.borderStyle = .roundedRect

    cell.editButton.frame = CGRect(x: self.view.frame.width - 60, y: 15, width: 70, height: 20)
    cell.editButton.addTarget(self, action: #selector(self.editInfoView), for: .touchUpInside)
    cell.editButton.setTitle(cell.editButton.title(for: .normal) ?? "Edit", for: .normal)

    cell.contentView.addSubview(cell.nameField)
    cell.contentView.addSubview(cell.teacherField)
    cell.contentView.addSubview(cell.infoView)
    cell.contentView.addSubview(cell.editButton)
    cell.contentView.addSubview(cell.placeholderField)

    cell.textLabel?.text = classes[indexPath.row].name
    cell.detailTextLabel?.text = classes[indexPath.row].teacher.name

    return cell
}

这是类定义:

class StudentTableViewCell: UITableViewCell {
    var infoView = UITextView()
    var placeholderField = UITextField()
    var nameField = UITextField()
    var teacherField = UITextField()
    var editButton = UIButton()
    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)
        // Configure the view for the selected state
    }
}

有谁知道为什么光标没有出现?

提前感谢您的帮助。

以下是调试层次结构中选择光标的照片: Photo from the side

Photo from the front

光标前面的视图是占位符字段,并且没有阻挡光标,因为光标在占位符字段下方时仍然不会出现。

1 个答案:

答案 0 :(得分:1)

首先,我不知道你的代码是如何为你工作的,因为没有编译它我可以看到几个主要问题,如。

  • 您在Cell
  • 中返回cellForRowAt indexPath的位置 {li> cell.teacherNameField不在StudentTableViewCell

坦率地说,这些事情并不困难,你试图编写代码,在编写代码(每种可能的方法)之前保持简单和思考,然后只有你才能实现最佳实践。

现在回到你的问题,我尝试使用你的代码库,但事情正在变得重叠,你无法做到这一点,所以你是能够解决问题的最佳人选。

使用Debug View Hierarchy

enter image description here

然后您可以在屏幕上看到每个运行时视图层。

enter image description here