【发布时间】:2011-03-16 17:46:08
【问题描述】:
有没有办法在UITextField 的中间垂直对齐文本在UIControlContentVerticalAlignmentCenter 和UIControlContentVerticalAlignmentBottom 之间,还是我必须使用其中之一?
【问题讨论】:
-
@titaniumdecoy 不是。
有没有办法在UITextField 的中间垂直对齐文本在UIControlContentVerticalAlignmentCenter 和UIControlContentVerticalAlignmentBottom 之间,还是我必须使用其中之一?
【问题讨论】:
您应该继承一个 UITextField,并覆盖以下方法:
- (CGRect) textRectForBounds: (CGRect) bounds
{
CGRect origValue = [super textRectForBounds: bounds];
/* Just a sample offset */
return CGRectOffset(origValue, 0.0f, 4.0f);
}
- (CGRect) editingRectForBounds: (CGRect) bounds
{
CGRect origValue = [super textRectForBounds: bounds];
/* Just a sample offset */
return CGRectOffset(origValue, 0.0f, 4.0f);
}
【讨论】: