UITextView content Inset bottom value is not working in iOS 7.
By not working i mean if i keep typing in UITextView and cursor reaches at end then it hides and i cant see text which i am typing.
I tried
[myTextView setTextContainerInset:UIEdgeInsetsMake(0, 0, 20, 0)];
[myTextView setContentInset:UIEdgeInsetsMake(0, 0, 20, 0)];
But it is not making any effect.