You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having issues with setting an OHAttributedLabel's attributed text with an NSAttributedString containing a newline character. The first line of text appears just fine, but any text after the first line is not shown. Switching the label back to a normal UILabel seems to fix this problem. Also, this problem is only occurring for me with an attributed string; setting the text to an NSString with newline characters behaves properly.
It seems like the label isn't resizing properly, because printing out the contents in the debug console shows the full string text, line breaks included. I am using Auto Layout.
The text was updated successfully, but these errors were encountered:
Duplicate with #3#42#46#151#160 and all thoses. Increment your label height so that the last line is drawn because contrary to UIKit, CoreText does not draw a line of text if it does not fit completely in height (see CTFrameSetter in issues)
I'm having issues with setting an OHAttributedLabel's attributed text with an NSAttributedString containing a newline character. The first line of text appears just fine, but any text after the first line is not shown. Switching the label back to a normal UILabel seems to fix this problem. Also, this problem is only occurring for me with an attributed string; setting the text to an NSString with newline characters behaves properly.
It seems like the label isn't resizing properly, because printing out the contents in the debug console shows the full string text, line breaks included. I am using Auto Layout.
The text was updated successfully, but these errors were encountered: