如何在代码中将我的 UILableView 居中在父 RoundedRectView 中?
Posted
技术标签:
【中文标题】如何在代码中将我的 UILableView 居中在父 RoundedRectView 中?【英文标题】:How to center my UILableView within a parent RoundedRectView in code? 【发布时间】:2011-11-14 20:10:06 【问题描述】:我有一个带有 UILabel 的 RoundedRectView,其中包含由 \n 分隔的不同长度的文本行。一旦我在标签上设置了文本,我就会做一个
[self.messageLabel sizeToFit];
这会导致多行文本正确显示但是标签不再位于父视图的中心(RoundedRectView)
然后我怎样才能在 RoundedRectView 中居中 UILabelView ?
谢谢
【问题讨论】:
是标签不居中,还是文字不居中? 【参考方案1】:labelView.center = CGPointMake(roundedRectView.center.x,roundedRectView.center.y);
【讨论】:
以上是关于如何在代码中将我的 UILableView 居中在父 RoundedRectView 中?的主要内容,如果未能解决你的问题,请参考以下文章