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

ios - 使用 Swift 将 UILabel 动态定位到内容 View 的底部?

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

我试图将我动态创建的 UILabel 定位到我的 contentView 的底部。我正在使用名为 Fuzi 的 HTML Parser 来捕获 HTML 标签并基于它们创建 UILabel;

func stringFromHTML( _ string: String?)
{
    do{
        let doc = try HTMLDocument(string: string!, encoding: String.Encoding.utf8)
        if let root = doc.body {
            for element in root.children {
                if element.tag == "h2" {
                    // Create new label
                    let label = UILabel()
                    label.text = element.stringValue
                    label.numberOfLines = 0
                    label.font = UIFont(name: "Avenir Next", size: 17)
                    label.textColor = UIColor.black
                    self.contentView.addSubview(label)
                    label.translatesAutoresizingMaskIntoConstraints = false

                    // Label constraints
                    let labelLeading = NSLayoutConstraint(item: label, attribute: .leading, relatedBy: .equal, toItem: contentView, attribute: .leading, multiplier: 1, constant: 20)
                    let labelTrailing = NSLayoutConstraint(item: label, attribute: .trailing, relatedBy: .equal, toItem: contentView, attribute: .trailing, multiplier: 1, constant: -20)
                    let labelTop = NSLayoutConstraint(item: label, attribute: .top, relatedBy: .equal, toItem: contentView, attribute: .top, multiplier: 1, constant: self.contentView.frame.origin.y)

                    self.contentView.addConstraints([labelLeading, labelTrailing, labelTop])

                }
                updateContentViewHeight()
            }
        }

    } 
    catch{
        print("html error\n",error)
    }

}

func updateContentViewHeight(){
    var totalContentHeight:CGFloat = 0.0
    for i in self.contentView.subviews {
        totalContentHeight += i.frame.height
    }
    let contentViewHeight:NSLayoutConstraint = NSLayoutConstraint(item: self.contentView, attribute: NSLayoutAttribute.height, relatedBy: NSLayoutRelation.equal, toItem: nil, attribute: NSLayoutAttribute.notAnAttribute, multiplier: 1, constant: totalContentHeight-29)
    self.contentView.addConstraint(contentViewHeight)

}

我尝试在 viewDidAppear 中调用我的 stringFromHTML 函数。但它会将我的 UILabel 定位在很远的地方(它们似乎并不存在)。

我想将我的标签放在最后一个标签的底部,见下图;

My screen...

有人可以帮忙吗?提前致谢!



Best Answer-推荐答案


改变

let labelTop = NSLayoutConstraint(item: label, attribute: .top, relatedBy: .equal, toItem: contentView, attribute: .top, multiplier: 1, constant: self.contentView.frame.origin.y)

if label != nil {
let labelTop = NSLayoutConstraint(item: label, attribute: .top, relatedBy: .equal, toItem: label[index], attribute: .top, multiplier: 1, constant: 2)
} else {
let labelTop = NSLayoutConstraint(item: label, attribute: .top, relatedBy: .equal, toItem: contentView, attribute: .top, multiplier: 1, constant: self.contentView.frame.origin.y)
}

因为您基本上是在强制每个标签位于相同的 y 位置。

关于ios - 使用 Swift 将 UILabel 动态定位到内容 View 的底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40446971/

回复

使用道具 举报

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

本版积分规则

关注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