We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just create a TwoLineTitleView in empty view controller and check accessibility of the TwoLineTitleView.
TwoLineTitleView
func addTwoLineView() { let twolineView = TwoLineTitleView() twolineView.frame = CGRect(x: 30, y: 100, width: 200, height: 40) twolineView.setup(title: "title", subtitle: "subtitle", interactivePart: .subtitle) twolineView.delegate = self view.addSubview(twolineView) }
The TwoLineTitleView should act as two a11y element and tap each one would trigger the twoLineTitleViewDidTapOnTitle method.
twoLineTitleViewDidTapOnTitle
The TwoLineTitleView should act as a whole a11y element as in teh Photo app
Are you willing to submit a PR to fix?: No
Requested priority: Normal
Products/applications affected: Not yet
I am thing what's the expected behavior here. Should we treate it as a whole element or not?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment Information
Please provide a reproduction of the bug:
Just create a
TwoLineTitleView
in empty view controller and check accessibility of theTwoLineTitleView
.Actual behavior:
The
TwoLineTitleView
should act as two a11y element and tap each one would trigger thetwoLineTitleViewDidTapOnTitle
method.Expected behavior:
The
TwoLineTitleView
should act as a whole a11y element as in teh Photo appPriorities and help requested:
Are you willing to submit a PR to fix?: No
Requested priority: Normal
Products/applications affected: Not yet
Additional thought
I am thing what's the expected behavior here. Should we treate it as a whole element or not?
The text was updated successfully, but these errors were encountered: