Get line information from UITextView and NSLayoutManager
问题 In order to support the UIAccessibilityReadingContent protocol, I need my UITextView to answer me questions about its lines. These are the methods of the protocol that I need to implement: accessibilityLineNumberForPoint: <- Provided a coordinate, return a line number accessibilityContentForLineNumber: <- Return the text of a given line accessibilityFrameForLineNumber: <- Given a line number, return its frame accessibilityPageContent <- The entire text content. That I have. :) I figure that