• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 使用自动布局使多个标签居中

[复制链接]
菜鸟教程小白 发表于 2022-12-13 01:38:15 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

是否可以使用自动布局将这些倒计时标签居中?

我有一个带有四个标签的居中 View (如深蓝色所示):minuteValue、minuteUnit、secondValue 和 secondUnit。

当倒数计时器低于 60 秒时,分钟标签会被隐藏。是否可以将计时器置于任何状态?即我有 2 个还是 4 个标签?

如果没有人知道自动布局解决方案,我很乐意编写代码,但我更愿意尽可能使用自动布局来实现这一点。

View with four labels



Best Answer-推荐答案


如果我理解正确,您希望它们始终居中,无论是两个还是四个标签。在这种情况下,我会为他们添加一个 contentView。所以,你会收到这样的东西:

YourBlueView -> ContainerView -> FourLabels

接下来,将您的 containerView 置于 YourBlueView 的中心:

yourBlueView.addConstraint(NSLayoutConstraint(item: yourBlueView, attribute: .centerY, relatedBy: .equal, toItem: containerView, attribute: .centerY, multiplier: 1, constant: 0))
yourBlueView.addConstraint(NSLayoutConstraint(item: yourBlueView, attribute: .centerX, relatedBy: .equal, toItem: containerView, attribute: .centerX, multiplier: 1, constant: 0))

最后一步,在 containerView 中为标签添加约束,类似于

containerView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|[firstLabel]|", metrics: nil, views: ["firstLabel": firstLabel]))
containerView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|[firstLabel][secondLabel][thirdLabel][fourthLabel]|",options: [.alignAllCenterY], metrics: nil, views: ["firstLabel": firstLabel,"secondLabel": secondLabel,"thirdLabel": thirdLabel,"fourthLabel": fourthLabel]))

现在,当您将标签宽度设置为 0 时,它们将保持在中心。

另一种解决方案,更清晰,但需要 UIStackView。将所有标签放入其中,当您使用 Storyboard 时,可以通过在 Storyboard 窗口下方的 Embed In Stack 按钮完成此操作,并将此堆栈 View 置于蓝色 View 的中心。任务完成

关于ios - 使用自动布局使多个标签居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44372416/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap