How to set content inset for UITextView in ios

35,441

Solution 1

got answer:

[atextView  setTextContainerInset:UIEdgeInsetsMake(7, 7, 0, 0)];

fixed my problem.

And in Swift...

@IBOutlet var tv:UITextView!
override func awakeFromNib() {
    super.awakeFromNib()
    tv.textContainerInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
}

UPDATE: another option to do that.

UIView *spacerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 10)];
[msgtext setLeftViewMode:UITextFieldViewModeAlways];
[msgtext setLeftView:spacerView];

Solution 2

An alternative and maybe a little more convenient way to do it, by subclassing the UITextField and add an @IBInspectable inset property.

import UIKit

class UITextfieldWithInset: UITextField {

    @IBInspectable
    var textfieldInset: CGPoint = CGPointMake(0, 0)

    override func textRectForBounds(bounds: CGRect) -> CGRect {
        return CGRectInset(bounds, textfieldInset.x, textfieldInset.y)
    }

    override func editingRectForBounds(bounds: CGRect) -> CGRect {
        return CGRectInset(bounds, textfieldInset.x, textfieldInset.y)
    }

    override func placeholderRectForBounds(bounds: CGRect) -> CGRect {
        return CGRectInset(bounds, textfieldInset.x, textfieldInset.y)
    }

}
Share:
35,441
Muruganandham K
Author by

Muruganandham K

I'm an OSX and IOS app dev... Pondicherry

Updated on May 26, 2020

Comments

  • Muruganandham K
    Muruganandham K almost 4 years

    I'm having a UITextView and set content inset as

    [atextView setContentInset:UIEdgeInsetsMake(0, 10, 0, 0)];

    This code working in iOS 6.1 and below, but nothing happens in iOS 7.0.

  • Anand
    Anand over 10 years
    hey @murugha23 , I need you help on how you solved textview setContentInset problem in IOS7
  • Muruganandham K
    Muruganandham K over 10 years
    replace setTextContainerInset instead of setContentInset. If you want to provide previous versions of ios, then check a condition reg., current device system version
  • Anand
    Anand over 10 years
    it would be good if you can provide me a sample code of your class,including keyboard and textview's various methods ,so i can I have clear idea
  • Muruganandham K
    Muruganandham K over 10 years
    actually whats your problem ? is it setting improperly or completely not setting?
  • Anand
    Anand over 10 years
    Yes I am posting question and posting link soon
  • Oran Dennison
    Oran Dennison over 10 years
    Note that you should only use one or the other. Using both together will result in undesirable additive behavior.
  • Muruganandham K
    Muruganandham K over 10 years
    before using above code i will check condition for ios version
  • hyperspasm
    hyperspasm about 10 years
    What I've discovered is that there is some odd (buggy) interaction between the setTextContainerInset UIEdgeInsets values. I was able to get the behavior I wanted as discussed here: stackoverflow.com/questions/19422578 I'd recommend (blindly) messing around with the 4 values to try and find an acceptable behavior.
  • dulgan
    dulgan over 6 years
    This is a nice answer for UITextField, but the question is about UITextView