在 UIView 的中心添加 UILabel

Posted

技术标签:

【中文标题】在 UIView 的中心添加 UILabel【英文标题】:Adding UILabel in center of UIView 【发布时间】:2016-12-25 21:12:45 【问题描述】:

我的 UICollectionView 创建了一些自定义 UIViews(称为 NumberViews)

每个 NumberView 都有一个属性 var text: UILabel!,它是一个标签,应该在 NumberView 的中间生成。

我做的是:

    我在 UIViewController 中创建 NumberViews

    我在 NumberViews 中创建标签

(1) 工作得很好,但 (2) 不行。它在 NumberView 之外的某个奇怪的地方创建标签。

对于(2),我在 NumberView 的 init 中这样做:

var text: UILabel!

override init(frame: CGRect) 
    super.init(frame: frame)
    self.text = UILabel(frame: frame)
    self.text.textAlignment = NSTextAlignment.center
    self.text.text = "testing"
    self.addSubview(self.text)

然后发生的事情是这样的:

               ______________    _
              |              |    \
              |     ______   |    |
 NumberView --|--> |      |  |    |
              |    |______|  |    |
              |              |    |
      Label --|----> testing |     > ViewController
              |              |    |
              |              |    |
              |              |    |
              |              |    |
              |______________|   _/

如何将标签移动到 NumberView 的中间?

【问题讨论】:

【参考方案1】:

您需要将布局锚点添加到您的 numberView 设置它的 center.x 和 center.y 等于标签的。

我现在不在我的 Mac 上,但您应该可以搜索代码来创建中心布局锚点。

快速搜索出现了这个网站:

http://useyourloaf.com/blog/pain-free-constraints-with-layout-anchors/

你要创建一个 centerXAnchor 和一个 centerYAnchor

【讨论】:

也许这个网站不是你想要发送的

以上是关于在 UIView 的中心添加 UILabel的主要内容,如果未能解决你的问题,请参考以下文章

将 MPMoviePlayerController 视图置于 UIview 的中心(相同位置)

居中对齐子视图 UIview 在中心

UITableViewController 中心的 UIView

UIView 中的自动布局 UILabel

检测关于容器视图的 UIView 中心位置 - Swift - 以编程方式

在视图控制器上放置无限的uiview对象数组[关闭]