如何将 UItableView 部分文本从左向右移动?
我找到了一些关于如何将单元格文本移至右侧的答案,但是如何将该部分的文本移至右侧?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果“部分的文本”是指该部分标题中的文本,则需要从在数据源中使用
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 customUILabel
withtextAlignment
set toUITextAlignmentRight
viatableView:viewForHeaderInSection:
in your delegate.替代
-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.