微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

向 UITableView 添加页脚

如何解决向 UITableView 添加页脚

所以,我使用自定义单元格(.xib 文件)制作了一个 UITableView,效果很好。问题是我现在想添加一个页脚,需要有一个 UIImageView 和一个 UILabel。

这就是我目前正在做的事情:(当然我是在 viewDidLoad() 内执行这个函数

private func setupTableViewFooter() {
        /// Insight logo
        let myApplogo = UIImageView()
        myApplogo.backgroundColor = .clear
        myApplogo.widthAnchor.constraint(equalToConstant: 110.0).isActive = true
        myApplogo.heightAnchor.constraint(equalToConstant: 60.0).isActive = true
        myApplogo.contentMode = .scaleAspectFit
        myApplogo.image = UIImage(named: "myApplogo")
        
        /// Description Label
        let label = UILabel()
        label.backgroundColor = .clear
        label.widthAnchor.constraint(equalToConstant: self.view.frame.size.width - 60).isActive = true
        label.heightAnchor.constraint(equalToConstant: 30.0).isActive = true
        label.textAlignment = .left
        label.textColor = K.Colors.black
        label.font = UIFont(name: "Roboto-Medium",size: 13)
        label.text = "Hello World!"
        
        /// Stack View
        let footer = UIStackView()
        footer.axis = .vertical
        footer.distribution = .fill
        footer.alignment = .leading
        footer.spacing = 00.0
        footer.backgroundColor = .lightGray
        
        footer.addArrangedSubview(myApplogo)
        footer.addArrangedSubview(label)
        footer.translatesAutoresizingMaskIntoConstraints = false
        
        NSLayoutConstraint.activate([
            footer.leftAnchor.constraint(equalTo: view.leftAnchor,constant: 30),footer.rightAnchor.constraint(equalTo: view.rightAnchor,constant: -30),footer.widthAnchor.constraint(equalTo: view.widthAnchor,constant: -60),footer.heightAnchor.constraint(equalToConstant: 90)
        ])
        
        self.tableView.tableFooterView = footer
    }

我收到此错误

libc++abi.dylib:以 NSException 类型的未捕获异常终止 *** 由于未捕获的异常“NSGenericException”而终止应用程序,原因:“无法使用锚点激活约束 <0x282fa0640>和<0x282f56400 have nsexception>

我不习惯以编程方式设置约束,所以我很难解决这个问题。请帮忙!

解决方法

首先将添加到然后添加约束

测试

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。