Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是在 tableview 中使用自定义 Uilabel,我从我的 sqlite 表中给出了一些文本行。我设置 label.numberoflines=0;它换行但第二行出现在第一行之前的一个空格。如何使第二行位于与第一行相同的 x 位置。
确保您的 UILabel 左对齐:
yourLabel.textAlignment = UITextAlignmentLeft;
或者如果您正在使用它,请在 ib 中执行。