我的问题和题目一样简单,但还有一点:
我有一个 UITextField,在它上面设置了背景图像。问题是文本紧紧地贴着图像的边缘,也就是图像的边缘。我希望我的文本字段看起来像苹果的,在背景图像和文本开始之间有一点水平空间。
您必须继承和重写 textRectForBounds: ,并编辑 RectForBounds: 。下面是一个 UITextfield 子类,它有自定义的背景以及垂直和水平的填充:
@interface MyUITextField : UITextField @property (nonatomic, assign) float verticalPadding; @property (nonatomic, assign) float horizontalPadding; @end #import "MyUITextField.h" @implementation MyUITextField @synthesize horizontalPadding, verticalPadding; - (CGRect)textRectForBounds:(CGRect)bounds { return CGRectMake(bounds.origin.x + horizontalPadding, bounds.origin.y + verticalPadding, bounds.size.width - horizontalPadding*2, bounds.size.height - verticalPadding*2); } - (CGRect)editingRectForBounds:(CGRect)bounds { return [self textRectForBounds:bounds]; } @end
用法:
UIImage *bg = [UIImage imageNamed:@"textfield.png"]; CGRect rect = CGRectMake(0, 0, bg.size.width, bg.size.height); MyUITextField *textfield = [[[MyUITextField alloc] initWithFrame:rect] autorelease]; textfield.verticalPadding = 10; textfield.horizontalPadding = 10; [textfield setBackground:bg]; [textfield setBorderStyle:UITextBorderStyleNone]; [self.view addSubview:textfield];
我建议将 UITextField转换为 UITextView并设置为 contentInset。例如缩进10个空格:
UITextField
UITextView
contentInset
textview.contentInset=UIEdgeInsetsMake(0, 10, 0, 0);
这是我发现的不用做任何子类的最快的方法:
UIView *spacerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 10)]; [textfield setLeftViewMode:UITextFieldViewModeAlways]; [textfield setLeftView:spacerView];
斯威夫特:
let spacerView = UIView(frame:CGRect(x:0, y:0, width:10, height:10)) textField.leftViewMode = UITextFieldViewMode.Always textField.leftView = spacerView
迅捷5:
let spacerView = UIView(frame:CGRect(x:0, y:0, width:10, height:10)) textField.leftViewMode = .always textField.leftView = spacerView
向 UITextField 添加填充的一个好方法是子类 UITextField,覆盖矩形方法并添加 edgeInsets 属性。然后可以设置 edgeInsets,并相应地绘制 UITextField。这也将使用自定义 left 视图或 right 视图集正确运行。
OSTextField
#import <UIKit/UIKit.h> @interface OSTextField : UITextField @property (nonatomic, assign) UIEdgeInsets edgeInsets; @end
OSTextField. m
#import "OSTextField.h" @implementation OSTextField - (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if (self) { self.edgeInsets = UIEdgeInsetsMake(0, 0, 0, 0); } return self; } -(id)initWithCoder:(NSCoder *)aDecoder{ self = [super initWithCoder:aDecoder]; if(self){ self.edgeInsets = UIEdgeInsetsMake(0, 0, 0, 0); } return self; } - (CGRect)textRectForBounds:(CGRect)bounds { return [super textRectForBounds:UIEdgeInsetsInsetRect(bounds, self.edgeInsets)]; } - (CGRect)editingRectForBounds:(CGRect)bounds { return [super editingRectForBounds:UIEdgeInsetsInsetRect(bounds, self.edgeInsets)]; } @end
有时 textField 的 left 视图是苹果的放大镜图像。 如果是这样,您可以设置如下缩进:
UIView *leftView = textField.leftView; if (leftView && [leftView isKindOfClass:[UIImageView class]]) { leftView.contentMode = UIViewContentModeCenter; leftView.width = 20.0f; //the space you want indented. }
我把它变成了一个可以在情节串连板中使用的小扩展:
public extension UITextField { @IBInspectable public var leftSpacer:CGFloat { get { return leftView?.frame.size.width ?? 0 } set { leftViewMode = .Always leftView = UIView(frame: CGRect(x: 0, y: 0, width: newValue, height: frame.size.height)) } } }
如果你不想创建@IBOutlet’s,可以简单地子类化(用 Swift 回答) :
class PaddedTextField: UITextField { override func awakeFromNib() { super.awakeFromNib() let spacerView = UIView(frame:CGRect(x: 0, y: 0, width: 10, height: 10)) leftViewMode = .always leftView = spacerView } }
我的建议是:
class PaddedTextField : UITextField { var insets = UIEdgeInsets.zero var verticalPadding:CGFloat = 0 var horizontalPadding:CGFloat = 0 override func textRect(forBounds bounds: CGRect) -> CGRect { return CGRect(x: bounds.origin.x + insets.left, y: bounds.origin.y + insets.top, width: bounds.size.width - (insets.left + insets.right), height: bounds.size.height - (insets.top + insets.bottom)); } override func editingRect(forBounds bounds: CGRect) -> CGRect { return textRect(forBounds: bounds) } }