计算 UITextField 基线位置
Posted
技术标签:
【中文标题】计算 UITextField 基线位置【英文标题】:Calculate UITextField baseline position 【发布时间】:2012-12-04 01:00:25 【问题描述】:我正在尝试以编程方式将UITextField
实例的基线与UIButton
实例对齐。我目前正在以类似here 描述的方式处理此计算,但使用UITextField
时,内容可能会有偏移。有什么想法可以让我在UITextField
内获得文本位置甚至更好,有没有更简单的方法来对齐基线?
【问题讨论】:
【参考方案1】:根据我的经验,UITextField
与UIButton
不同,实际上在文本周围没有任何偏移。无论如何,您可以找出两个控件中的确切文本框:
let textField = UITextField()
//... size the field, e.g. textField.sizeToFit()
let button = UIButton()
//... size the button, e.g. button.sizeToFit()
// Compute the target offset between tops (frame.origin.y).
let buttonBox = button.contentRectForBounds(button.bounds)
let buttonBaseline = buttonBox.origin.y + button.titleLabel!.font.ascender
let textFieldBox = textField.textRectForBounds(textField.bounds)
let textFieldBaseline = textFieldBox.origin.y + textField.font!.ascender
let offset = buttonBaseline - textFieldBaseline
//... position button, e.g., button.frame = CGRect(...)
textField.frame = CGRect(
origin: CGPoint(x: button.frame.maxX, y: button.frame.origin.y + offset),
size: textField.bounds.size)
【讨论】:
以上是关于计算 UITextField 基线位置的主要内容,如果未能解决你的问题,请参考以下文章