Our problem is that after rotation, text are not utilising the width of the cell. Although we've properly configured our auto layout constraints on that, the problem actually lies in how DTCoreTextContentView implemented.
My patch makes sure CoreTextView always relayoutText() if bounds has changed
The our VC should reload our table view after rotation since cell height is probably changed.
This might not be perfect but definitely more reliable in my testing.
Our problem is that after rotation, text are not utilising the width of the cell. Although we've properly configured our auto layout constraints on that, the problem actually lies in how DTCoreTextContentView implemented.
relayoutText()
ifbounds
has changedThis might not be perfect but definitely more reliable in my testing.