不使用故事板时,自定义单元格在UITableView中不显示数据。
创始人
2024-12-28 19:31:23
0

问题描述中提到,在UITableView中自定义单元格不显示数据。这可能是由于以下原因导致的:

  1. 单元格的重用标识符没有设置正确。
  2. 单元格的数据源没有正确配置。
  3. 单元格的高度没有正确设置。
  4. 单元格的布局约束没有正确设置。

下面是一种解决方法,其中包含了代码示例:

  1. 首先,确保你已经在UITableView注册了自定义的单元格类。在viewDidLoad方法中添加以下代码:
tableView.register(CustomTableViewCell.self, forCellReuseIdentifier: "CustomCell")
  1. 确保UITableView的数据源方法正确实现。在UITableViewDelegate和UITableViewDataSource协议的扩展中添加以下代码:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    // 返回数据源中的行数
    return dataArray.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell", for: indexPath) as! CustomTableViewCell

    // 配置自定义单元格的数据
    let data = dataArray[indexPath.row]
    cell.titleLabel.text = data.title
    cell.subtitleLabel.text = data.subtitle
    
    return cell
}
  1. 确保自定义单元格的高度正确设置。在UITableViewDelegate协议的扩展中添加以下代码:
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return 60.0 // 设置单元格的高度
}
  1. 确保自定义单元格的布局约束正确设置。在CustomTableViewCell类中添加以下代码:
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
    super.init(style: style, reuseIdentifier: reuseIdentifier)
    
    // 添加子视图和约束
    addSubview(titleLabel)
    addSubview(subtitleLabel)
    
    titleLabel.translatesAutoresizingMaskIntoConstraints = false
    subtitleLabel.translatesAutoresizingMaskIntoConstraints = false
    
    NSLayoutConstraint.activate([
        titleLabel.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 10),
        titleLabel.topAnchor.constraint(equalTo: topAnchor, constant: 10),
        titleLabel.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -10),
        titleLabel.heightAnchor.constraint(equalToConstant: 20),
        
        subtitleLabel.leadingAnchor.constraint(equalTo: leadingAnchor, constant: 10),
        subtitleLabel.topAnchor.constraint(equalTo: titleLabel.bottomAnchor, constant: 5),
        subtitleLabel.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -10),
        subtitleLabel.heightAnchor.constraint(equalToConstant: 20)
    ])
}

required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}

以上是一种解决方法,确保你的代码在这些方面配置正确,就可以显示自定义单元格中的数据了。

相关内容

热门资讯

安卓换鸿蒙系统会卡吗,体验流畅... 最近手机圈可是热闹非凡呢!不少安卓用户都在议论纷纷,说鸿蒙系统要来啦!那么,安卓手机换上鸿蒙系统后,...
安卓系统拦截短信在哪,安卓系统... 你是不是也遇到了这种情况:手机里突然冒出了很多垃圾短信,烦不胜烦?别急,今天就来教你怎么在安卓系统里...
app安卓系统登录不了,解锁登... 最近是不是你也遇到了这样的烦恼:手机里那个心爱的APP,突然就登录不上了?别急,让我来帮你一步步排查...
安卓系统要维护多久,安卓系统维... 你有没有想过,你的安卓手机里那个陪伴你度过了无数日夜的安卓系统,它究竟要陪伴你多久呢?这个问题,估计...
windows官网系统多少钱 Windows官网系统价格一览:了解正版Windows的购买成本Windows 11官方价格解析微软...
安卓系统如何卸载app,轻松掌... 手机里的App越来越多,是不是感觉内存不够用了?别急,今天就来教你怎么轻松卸载安卓系统里的App,让...
怎么复制照片安卓系统,操作步骤... 亲爱的手机控们,是不是有时候想把自己的手机照片分享给朋友,或者备份到电脑上呢?别急,今天就来教你怎么...
安卓系统应用怎么重装,安卓应用... 手机里的安卓应用突然罢工了,是不是让你头疼不已?别急,今天就来手把手教你如何重装安卓系统应用,让你的...
iwatch怎么连接安卓系统,... 你有没有想过,那款时尚又实用的iWatch,竟然只能和iPhone好上好?别急,今天就来给你揭秘,怎...
安装了Anaconda之后找不... 在安装Anaconda后,如果找不到Jupyter Notebook,可以尝试以下解决方法:检查环境...