add accessibility for input text view

This commit is contained in:
ryanzhao 2021-08-25 14:12:47 +10:00
parent b7289e72a3
commit f99fa58acc
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,8 @@ public final class InputTextView : UITextView, UITextViewDelegate {
super.init(frame: CGRect.zero, textContainer: nil)
setUpViewHierarchy()
self.delegate = self
self.isAccessibilityElement = true
self.accessibilityLabel = NSLocalizedString("vc_conversation_input_prompt", comment: "")
}
public override init(frame: CGRect, textContainer: NSTextContainer?) {