UITableView--常见问题及解决方案

2019-12-20  本文已影响0人  JQWONG
UITableView实现步骤
  • 创建UITableviewController或在UIViewController中添加tableView
  • 设置tableView的代理(delegate、dataSource)
  • 根据需求设计cell,并注册复用
  • 实现tableView的代理方法
一个tableView中有多个不同的cell,怎么设置比较好

这种问题在日常开发中经常会遇到网上也有很多解决方案,这里根据本人日常工作作出总结

enum SectionType: Int, CaseIterable {
    case pollTitle
    case description
    case pollOption

    var title: String {
        switch self {
        case .pollTitle:
            return "New Poll"
        case .description:
            return "Optional Description"
        case .pollOption:
            return "Poll Options"
        }
    }
}

    override func numberOfSections(in tableView: UITableView) -> Int {
        return SectionType.allCases.count
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        guard let section = SectionType(rawValue: section) else { return 0 }
        switch section {
        case . pollTitle, .description: return 1
        case . pollOption: return pollOptions.count
        }
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        guard let section = SectionType(rawValue: indexPath.section) else { return UITableViewCell() }
        switch section {
        case .pollTitle:
            let cell: XOFormSingleLineTableViewCell = tableView.dequeueReusableCell(for: indexPath)
            return cell
        case .description:
            let cell: XOFormParagraphTableViewCell = tableView.dequeueReusableCell(for: indexPath)
            return cell
        case .pollOption:
            let cell: CommunityPollTableViewCell = tableView.dequeueReusableCell(for: indexPath)
            return cell
        }
    }

tableView应该group还是plain

UITableView有两种表现形式,一种是plain(默认)一个是group
最直观的区别就是plain形式下,header与footer会悬浮,group不会,并且对内容进行了分组(section)

plain group
当现实现 设计

This value compares less than or equal to all positive numbers, but
greater than zero. If the type supports subnormal values,
leastNonzeroMagnitude is smaller than leastNormalMagnitude;
otherwise they are equal.

        tableView.sectionHeaderHeight = CGFloat.leastNonzeroMagnitude
        tableView.sectionFooterHeight = CGFloat.leastNonzeroMagnitude
        tableView.tableHeaderView = UIView(frame: CGRect(x: 0, y: 0, width: 0, height: CGFloat.leastNonzeroMagnitude))

这样处理下来,整个tableView与我们UI设计稿上一样的效果了

当Cell含有textField时,滑动textField的文字会消失
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell: TableViewCell_textField = tableView.dequeueReusableCell(for: indexPath)
        cell.setup(index: indexPath.row, model: array[indexPath.row], delegate: self)
        return cell
    }
func tableViewCell(_ cell: TableViewCell_textField, inputTextFieldDidChange index: Int, text: String?) {
        guard let text = text else { return }
        if array.count > index {
            array[index].text = text
        }
    }


本文主要用于记录工作中使用tableView时遇到的问题及解决方案
如果大家有其他解决方案欢迎留言交流
支持原创,版权所有
未完待续
上一篇下一篇

猜你喜欢

热点阅读