I'm trying to set a UITextView
's contentInset
property. When doing so, the UIEdgeInset
's top
variable works just fine. So [self.textView setContentInset: 'UIEdgeInsetsMake(50, 0, 0, 0)];
works.
But assigning any other variable of UIEdgeInsets doesn't work. Only the top
adjusts. bottom
doesn't adjust, neither do left
or right
.
So [self.textView setContentInset: UIEdgeInsetsMake(0, 50, 100, 50)];
doesn't do anything to my textView.
Am I missing something? Any ideas?
Use setTextContainerInset instead of contentInset on iOS 7.
[self.textView setTextContainerInset:UIEdgeInsetsMake(0, 50, 100, 50)];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With