UITableView 的文本右对齐且缩进

发布于 2024-12-08 14:48:55 字数 736 浏览 1 评论 0原文

我想制作一个 UITableView ,其文本既右对齐又缩进,如下图所示:

在此处输入图像描述

不幸的是,我无法通过编写以下内容来做到这一点:-

cell.textLabel.textAlignment = UITextAlignmentRight; 
cell.indentationLevel = 10; // or even -10 

可以使用 UITableView 的属性来完成此操作吗?如果没有,我能想到的唯一方法是使用 [myString drawInRect:withFont:]; 但我想在进入该方法之前先了解一下基于对齐和缩进的方法[我有已经为此编写了代码:-)],因此欢迎使用其他解决方法!

其他信息:缩进随加速度计值的变化而变化,因此我不能对标签框架位置进行硬编码。我已在 github ,到目前为止我只使用了对齐和缩进信息,因此继续使用它会让这变得更容易。

I wanted to make a UITableView with text that is both right-aligned and indented as depicted in the image below:

enter image description here

Unfortunately, I can not do this by writing :-

cell.textLabel.textAlignment = UITextAlignmentRight; 
cell.indentationLevel = 10; // or even -10 

Can this be done using UITableView's properties? If not, the only way I could think of is using [myString drawInRect:withFont:]; but I would like to go through methods based on alignment and indentation before getting into that [I have already written code for that :-) ], so other work-arounds are welcome!

Additional info: The indentation varies with accelerometer values so I can not have hard-coded Label frame positions. I've uploaded sample code at github in which I've used only the alignment and indentation info so far, so continuing to use that would make this easier.

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

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

发布评论

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

评论(2

梦回梦里 2024-12-15 14:48:55

子类 UITableViewCell ,您可以根据需要放置文本标签的 frame 。在 if 语句中 dequeueReusableCellWithIdentifier: 如果可重用单元不存在,只需修改 frame ,然后设置标签以使用使用setFrame调整框架。自动调整大小蒙版应保持不变。

Subclass UITableViewCell and you can position the frame of the text label however you like. In the if statement where you dequeueReusableCellWithIdentifier: where a reusable cell doesn't exist, just modify the frame and then set the label to use the adjusted frame with setFrame. The autoresizing mask should remain the same.

递刀给你 2024-12-15 14:48:55

您始终可以创建自己的自定义单元格并将 UITextLabel 放置在单元格中,并使 UITextLabel 的对齐方式右对齐。

还将 UITextLabel 的自动调整大小掩码设置为右侧,以便无论方向如何,缩进距离都保持不变。

You could always create your own custom cells and place a UITextLabel in the cell, and make the UITextLabel's alignment right aligned.

Also set the autoresizing mask of the UITextLabel to the right so the indentation distance stays the same no matter the orientation.

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