Answers:
textField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
快速使用:
textField.contentVerticalAlignment = UIControlContentVerticalAlignment.center
textField.contentVerticalAlignment = .center
这可能有一些复杂的因素,在先前的答案中提到过一些:
什么你要对齐是重要的,因为这点在字体应垂直居中,由于行高,伸,伸等。(来源:ilovetypography.com)(图片感谢http://ilovetypography.com/2009 / 01/14 / inconspicuous-vertical-metrics /)
例如,当您仅处理数字时,标准中心对齐方式看起来不太正确。比较下面两个中的差异,它们使用相同的对齐方式(在下面的代码中),其中一个看起来正确,而另一个看起来略微偏离:
混合字母不太正确:
但如果只是数字就看起来正确
因此,不幸的是,它可能需要一些反复试验和手动调整才能使其外观正确。
我将下面的代码放在UITextField的子类中。它调用超类方法,因为这考虑了存在的清除按钮。
override func awakeFromNib() {
contentVerticalAlignment = UIControlContentVerticalAlignment.Center
}
override func textRectForBounds(bounds: CGRect) -> CGRect {
let boundsWithClear = super.textRectForBounds(bounds)
let delta = CGFloat(1)
return CGRect(x: boundsWithClear.minX, y: delta, width: boundsWithClear.width, height: boundsWithClear.height - delta/2)
}
override func editingRectForBounds(bounds: CGRect) -> CGRect {
let boundsWithClear = super.editingRectForBounds(bounds)
let delta = CGFloat(1)
return CGRect(x: boundsWithClear.minX, y: delta, width: boundsWithClear.width, height: boundsWithClear.height - delta/2)
}
override func placeholderRectForBounds(bounds: CGRect) -> CGRect {
let delta = CGFloat(1)
return CGRect(x: bounds.minX, y: delta, width: bounds.width, height: bounds.height - delta/2)
}
placeholderRectForBounds
扩展范围太右了。我有一个正确的观点,它与其他领域不同。我刚刚实现了textRectForBounds
它,并从其他2个函数中调用了它:)
这适用于textField的文本。但是,如果要使用占位符文本(文本字段为空白时将显示的文本),则在iOS 7上会遇到问题。
我通过重写TextField类解决了它,
- (void) drawPlaceholderInRect:(CGRect)rect
方法。
像这样:
- (void) drawPlaceholderInRect:(CGRect)rect
{
[[UIColor blueColor] setFill];
CGRect placeholderRect = CGRectMake(rect.origin.x, (rect.size.height- self.font.pointSize)/2, rect.size.width, self.font.pointSize);
[[self placeholder] drawInRect:placeholderRect withFont:self.font lineBreakMode:NSLineBreakByWordWrapping alignment:self.textAlignment];
}
适用于iOS7和早期版本。
textField
是他UITextField
实例的名称-您的实例可能有所不同。所以他会有类似的东西UITextField *textField = [[UITextField alloc] init];
。如果使用不同的变量名(比其他任何东西textField
后*
),你需要做的yourDifferentVariableNameHere.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter
,而不是。