// // RecommendHashTagSection.swift // Mastodon // // Created by sxiaojian on 2021/4/1. // import Foundation import MastodonSDK import UIKit enum RecommendHashTagSection: Equatable, Hashable { case main } extension RecommendHashTagSection { static func collectionViewDiffableDataSource( for collectionView: UICollectionView ) -> UICollectionViewDiffableDataSource { UICollectionViewDiffableDataSource(collectionView: collectionView) { collectionView, indexPath, tag -> UICollectionViewCell? in let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: SearchRecommendTagsCollectionViewCell.self), for: indexPath) as! SearchRecommendTagsCollectionViewCell cell.config(with: tag) return cell } } }