将 UITableView 和部分 direction/alignment 设置为 RTL(从右到左)
Setting UITableView and section direction/alignment to be RTL (Right to Left)
我在 swift 中创建了一个 UITableView,我知道我可以像这样更改单元格方向:
cell.textLabel?.textAlignment = NSTextAlignment.Right
但是我怎样才能做到这一点呢? and/or 到整个 table?
我关注@ReyGonzales 评论并实施了以下 tableView:viewForHeaderInSection
:
override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
var title: UILabel = UILabel()
title.text = "SomeText"
title.textAlignment = NSTextAlignment.Right
return title
}
我在 swift 中创建了一个 UITableView,我知道我可以像这样更改单元格方向:
cell.textLabel?.textAlignment = NSTextAlignment.Right
但是我怎样才能做到这一点呢? and/or 到整个 table?
我关注@ReyGonzales 评论并实施了以下 tableView:viewForHeaderInSection
:
override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
var title: UILabel = UILabel()
title.text = "SomeText"
title.textAlignment = NSTextAlignment.Right
return title
}