表格视图,其中的单元格具有固定高度和动态高度。
创始人
2024-12-10 06:31:45
0

要实现具有固定高度和动态高度的表格视图,可以使用UITableView,并设置单元格的高度属性。

以下是一个示例代码:

import UIKit

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
    
    let tableView = UITableView()
    var data: [String] = ["Item 1", "Item 2", "Item 3", "Item 4", "Item 5"]
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        tableView.dataSource = self
        tableView.delegate = self
        
        // 设置tableView的frame,使其填充整个视图
        tableView.frame = view.bounds
        
        // 注册自定义的UITableViewCell类
        tableView.register(MyTableViewCell.self, forCellReuseIdentifier: "cell")
        
        // 设置tableView的行高为固定值
        tableView.rowHeight = 50
        
        // 设置tableView的估算行高为动态值
        tableView.estimatedRowHeight = 100
        
        // 允许自动调整行高
        tableView.rowHeight = UITableView.automaticDimension
        
        // 将tableView添加到视图中
        view.addSubview(tableView)
    }
    
    // UITableViewDataSource方法,返回行数
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return data.count
    }
    
    // UITableViewDataSource方法,返回每行的单元格
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! MyTableViewCell
        
        cell.textLabel?.text = data[indexPath.row]
        
        return cell
    }
}

class MyTableViewCell: UITableViewCell {
    
    override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
        super.init(style: style, reuseIdentifier: reuseIdentifier)
        
        // 设置单元格的布局和外观
        setupCell()
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    func setupCell() {
        // 添加自定义的子视图和约束
        // 这里可以根据需求添加内容,比如添加图片、标签等
    }
}

在上述代码中,我们创建了一个UIViewController,并在其中创建了一个UITableView。我们设置了UITableView的dataSource和delegate为ViewController本身,并注册了自定义的UITableViewCell类。

在viewDidLoad方法中,我们设置了UITableView的行高属性为固定值,并设置了估算行高为动态值。我们还允许自动调整行高。

在tableView(_:cellForRowAt:)方法中,我们创建了自定义的UITableViewCell,并将数据赋值给单元格的textLabel。

通过这样的设置,UITableView中的单元格将具有固定高度和动态高度。如果内容超过了固定高度,单元格的高度将自动调整以适应内容。

相关内容

热门资讯

前端-session、jwt 目录:   (1)session (2&#x...
linux入门---制作进度条 了解缓冲区 我们首先来看看下面的操作: 我们首先创建了一个文件并在这个文件里面添加了...
关于测试,我发现了哪些新大陆 关于测试 平常也只是听说过一些关于测试的术语,但并没有使用过测试工具。偶然看到编程老师...
前缀和与对数器与二分法 1. 前缀和 假设有一个数组,我们想大量频繁的去访问L到R这个区间的和,...
nodejs:本地安装nvm实... 一、背景-使用不同版本node的原因 vue3+ts、nuxt3版本,node...
JAVA集合知识整理 Java集合知识整理 HashMap相关 HashMap的底层数据结构:jdk1.8之...
无刷直流电机介绍及单片机控制实... 无刷直流电机介绍及单片机控制实例前言基本概念优势与劣势使用寿命基本结构使用单片机控制实例电子调速器&...
fwdiary(2) dp2 1.传纸条  AcWing 275. 传纸条 - AcWing 走两条路,走一条最大的...
常用的DOS命令 常用的DOS命令 DOS(Disk Operating System,磁...
<C++> 类和对象(下) 1.const成员函数将const修饰的“成员函数”称之为const成员函数,cons...