GrowingTextView icon indicating copy to clipboard operation
GrowingTextView copied to clipboard

Fixed: self.placeholder does not update it's position when set textView's textContainerInset

Open meigesir opened this issue 6 years ago • 0 comments

the default vlue of textContainerInset is (8, 0, 8, 0) For example:

    UIEdgeInsets edgeInsets = _textView.internalTextView.textContainerInset;
    edgeInsets.left = 8;
    edgeInsets.right = 8;
    _textView.internalTextView.textContainerInset = edgeInsets;

meigesir avatar Apr 10 '18 05:04 meigesir