I am trying to set the UITextView contentInset property. In this case, the variable UIEdgeInset top working fine. So, [self.textView setContentInset: 'UIEdgeInsetsMake(50, 0, 0, 0)]; works.
But assigning any other variable to UIEdgeInsets does not work. Only top adjustable. bottom not adjustable, do not left or right .
So, [self.textView setContentInset: UIEdgeInsetsMake(0, 50, 100, 50)]; does nothing for my textView.
Am I missing something? Any ideas?
ios ios7 uitextview uiedgeinsets
Joe Oct 05 '13 at 22:41 2013-10-05 22:41
source share