如何将 UItableView 部分文本从左向右移动?

发布于 2024-10-02 13:10:29 字数 47 浏览 4 评论 0原文

我找到了一些关于如何将单元格文本移至右侧的答案,但是如何将该部分的文本移至右侧?

I found some answers of how you can move the cell text to the right, BUT HOW can I move the section's text to the right?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心碎无痕… 2024-10-09 13:10:29

如果“部分的文本”是指该部分标题中的文本,则需要从在数据源中使用tableView:titleForHeaderInSection:切换为提供自定义 UILabel ,其中 textAlignment 通过委托中的 tableView:viewForHeaderInSection: 设置为 UITextAlignmentRight

If by "section's text" you mean the text in the header for the section, you'll need to switch from using tableView:titleForHeaderInSection: in your data source to supplying a custom UILabel with textAlignment set to UITextAlignmentRight via tableView:viewForHeaderInSection: in your delegate.

失而复得 2024-10-09 13:10:29

替代 -tableView:titleForHeaderInSection:,而是重写 -tableView:viewForHeaderInSection: 并返回每个部分的自定义视图。您可以按照您想要的任何方式格式化它。

Instead of -tableView:titleForHeaderInSection:, override -tableView:viewForHeaderInSection: and return a custom view for each section. You can format it in any way you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文