I'm trying to fit 3 lines of text in a textview of a certain size by using
[_messageField setContentInset:UIEdgeInsetsMake(-8, -6, 0,0)];
This works in iOS 6, but iOS 7 seems to be clipping content at the bottom of the textview. Both of the textviews shown below have the same font, text, and edge insets. Line 3 does not appear in iOS 7.
I had success using
and adjusting as needed.