0

我创建了一个项目并创建了 UITableview 类。我在 UITableView 的单元格中使用 UITextField。现在我想显示这个 UITextfield 右对齐,但我不知道。

请指导我。多谢你们。

4

2 回答 2

2
textfield.textAlignment = NSTextAlignmentRight;

希望这可以帮助你...

编辑:

txtField.contentVerticalAlignment = UIControlContentVerticalAlignmentRight;

阅读这个 stackoverflow 帖子:Placeholder text not centered for UITextField created programmatically created

于 2013-05-26T13:11:41.127 回答
1

您正在寻找这个:-

textfield.contentHorizontalAlignment =  UIControlContentHorizontalAlignmentRight
于 2013-05-26T13:16:09.410 回答