as the title says i am trying to add padding-like behavior to a UITextView. The textview is generated when the view is pushed inside my navigation controller and the following c
This answer is totally wrong. Correct answer is simply:
uitextview.textContainerInset = UIEdgeInsetsMake(8,5,8,5); // top, left, bottom, right
(Those values generally match how a UITextField on the same screen looks.)
Use this one:
self.textView.contentInset = UIEdgeInsetsMake(5, 5, 5, 5);