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

如何调整 UIView 的大小以适应其内容?

如何解决如何调整 UIView 的大小以适应其内容?

我有一个包含两个标签UIView。我希望视图调整大小,以便它包含每个标签中的所有文本,但文本从视图中溢出。这是我的代码

override func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: K.reuseIdentifier,for: indexPath) as! NoteTableViewCell
       
    cell.titleLabel?.text = titleArray[indexPath.row]
    cell.mainTextLabel?.text = noteArray[indexPath.row]
    cell.titleLabel?.font = UIFont(name:"HelveticaNeue-Bold",size: 18.0)
    cell.cardView?.sizetoFit()
    cell.cardView?.layer.shadowOpacity = 1
    cell.cardView?.layer.shadowOffset = .zero
    cell.cardView?.layer.shadowRadius = 1
    cell.cardView?.layer.cornerRadius = 8
    return cell
}

结果如下:

enter image description here

解决方法

你需要这些约束

CardView // hook it's top,bottom,leading and trailing to parent View

        |
  - titleLabel -  // hook it's top,leading and trailing to Card View  
        | 
  - mainTextLabel - // hook it's top to titleLabel,leading and trailing and bottom to Card View  
        |

并删除

cell.cardView?.sizeToFit()

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