答案 0 :(得分:3)
删除center X
约束,你有尾随/领先。在此之后,您的UILabel将在superview中居中,但内部文本不会:
| [Text ] |
要将文字居中,只需将UILabel的textAlignment
设置为NSTextAlignmentCenter
(居中),这样就像:
| [ Text ] |
另外,我建议删除强制height
约束(您将其设置为28)并将其替换为类似top/bottom space
之类的内容。