gpt4 book ai didi

swift - Swift 3.0 中 cellForRowAt 中的 textAlignent to right

转载 作者:行者123 更新时间:2023-11-30 12:33:20 26 4
gpt4 key购买 nike

我无法设法让我的文本与表格 View 的右侧对齐。我的代码将文本对齐设置为右对齐,但仅当文本行数超过 1 行时才对齐文本。这是我的 cellforRowAt 代码

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {


let cell = UITableViewCell(style: .subtitle, reuseIdentifier: cellId)
cell.textLabel?.text = self.messages[indexPath.row]
cell.textLabel?.numberOfLines = 0
cell.textLabel?.textAlignment = .right
return cell
}

我该如何解决这个问题?

最佳答案

您正在使用 UITableViewCell 样式的副标题,不是吗?这种样式无论出于何种原因都不允许您覆盖文本标签的对齐方式。

要解决这个问题,您可以创建一个简单的 UITableViewCell 子类,并在相同位置添加标签。

关于swift - Swift 3.0 中 cellForRowAt 中的 textAlignent to right,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43175770/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com