UIMultiLineLabel missing \n line break ability within your buildLines method.
Dockter opened this issue ยท 1 comments
At line:
You've specified only \r, which I assume is for Linux. Can you please use:
String[] texts = text.toString().split("(?<=\r)\n?");
As you did in UITextField.
Thank you.