table 视图单元格的大小写。 swift

Case for table view cell. swift

我有一个 tableview 我做了 cell.xib。 在这些 tableview 中会有不同的 cells,我对 xib 做同样的事情。

一个我如何使用它的例子。

 if indexPath.row == 0 {
         let cell = tableView.dequeueReusableCell( withIdentifier: TableViewCellOne.identifier,
            for: indexPath) as? TableViewCellOne

        return cell ?? UITableViewCell()
        }

if indexPath.row == 1 {
         let cell = tableView.dequeueReusableCell( withIdentifier: TableViewCellTwo.identifier,
            for: indexPath) as? TableViewCellTWo

        return cell ?? UITableViewCell()
        }
              return UITableViewCell()
        }

但我不喜欢这种做法。我如何使用 case 执行此操作?

你可以这样写协议 DequeueInitializable 及其扩展

protocol DequeueInitializable {
    static var reuseableIdentifier: String { get }
}

extension DequeueInitializable where Self: UITableViewCell {

    static var reuseableIdentifier: String {
        return String(describing: Self.self)
    }

    static func dequeue(tableView: UITableView) -> Self {
        guard let cell = tableView.dequeueReusableCell(withIdentifier: self.reuseableIdentifier) else {
            return UITableViewCell() as! Self
        }
        return cell as! Self
    }
    static func register(tableView: UITableView)  {
        let cell = UINib(nibName: self.reuseableIdentifier, bundle: nil)
        tableView.register(cell, forCellReuseIdentifier: self.reuseableIdentifier)
    }
}

extension DequeueInitializable where Self: UICollectionViewCell {

    static var reuseableIdentifier: String {
        return String(describing: Self.self)
    }

    static func dequeue(collectionView: UICollectionView,indexPath: IndexPath) -> Self {

       let cell = collectionView.dequeueReusableCell(withReuseIdentifier: self.reuseableIdentifier, for: indexPath)

        return cell as! Self
    }
     static func register(collectionView: UICollectionView)  {
          let cell = UINib(nibName: self.reuseableIdentifier, bundle: nil)
          collectionView.register(cell, forCellWithReuseIdentifier: self.reuseableIdentifier)
      }
}

然后用这个协议确认你的手机

class TableViewCellOne: UITableViewCell, DequeueInitializable {
}

然后在你的cellForRow方法中

switch (indexPath.row) {
   case 0:
    return TableViewCellOne.dequeue(tableView: tableView)
   case 1:
    return TableViewCellTwo.dequeue(tableView: tableView)
   default:
   return UITableViewCell()
}

您可以使用 switch case 来完成,如下所示:

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        switch section {
        case 0: //TableViewCellOne
                return 4
        case 1: //TableViewCellTwo                
                return 5                
        default:
                return 0
        }
    }

那么 cellforRow 方法将是:

 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

switch indexPath.section {
     case 0:  //cell One
            let cell = tableView.dequeueReusableCell( withIdentifier: TableViewCellOne.identifier,
                for: indexPath) as? TableViewCellOne    
            return cell ?? UITableViewCell()

     case 1: //cell two
            let cell = tableView.dequeueReusableCell( withIdentifier: TableViewCellTwo.identifier,
                for: indexPath) as? TableViewCellTWo    
            return cell ?? UITableViewCell()

     default: 
             return UITableViewCell()
       }
}