J'utilise un UITextView et je définis le contenu en tant qu'encart
[atextView setContentInset:UIEdgeInsetsMake(0, 10, 0, 0)];
Ce code fonctionne dans iOS 6.1 et inférieur, mais rien ne se passe dans iOS 7.0.
obtenu la réponse:
[atextView setTextContainerInset:UIEdgeInsetsMake(7, 7, 0, 0)];
résolu mon problème.
Et dans Swift ...
@IBOutlet var tv:UITextView!
override func awakeFromNib() {
super.awakeFromNib()
tv.textContainerInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
}
MISE À JOUR: une autre option pour le faire.
UIView *spacerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 10)];
[msgtext setLeftViewMode:UITextFieldViewModeAlways];
[msgtext setLeftView:spacerView];
Une manière alternative et peut-être un peu plus pratique de le faire, en sous-classant l'UITextField et en ajoutant une propriété d'encart @IBInspectable.
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)
}
}