I have a table view in which cells contain only UITextView, configured as such:
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
When I test the VoiceOver application, I can find two places that are just small empty elements for which VoiceOver says โempty lineโ on the left and right edges of the text in the text view. If I have a multi-line string, for example. @"multiple\nlines" , then on the right edge of the first line there is an "empty line", and the other on the left edge of the second line. I cannot find the "empty line" to the left of the first line or to the right of the second line, but as far as I know, they are simply difficult to find.
Why does VoiceOver find these blank lines? How can I get rid of them?
source share