add accessibility for input text view

pull/500/head
ryanzhao 4 years ago
parent b7289e72a3
commit f99fa58acc

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

Loading…
Cancel
Save