美文网首页iOSiOS学习程序员
Swift3.0 Controller瘦身

Swift3.0 Controller瘦身

作者: cheyongzi | 来源:发表于2016-12-22 16:16 被阅读174次

缘由

iOS开发,我们常用的组件UITableView,UICollectionView,通过代理的方式实现数据的加载,如果我们在UIViewController委托代理,会导致代码的冗余,同时Controller过于庞大,不利于代码的阅读
Objective-C时代我们通过MVVM框架,实现Controller的瘦身,但是仍然会存在很多冗余的代码
Swift时代我们可以在MVVM的基础上更好的实现Controller的瘦身,减少冗余的代码

具体的实现方式可以参考MGTV-Swift,觉得不错赏个🌟

实现

ViewModelProtocol

  • 定义通用的协议,主要用于CollectionViewMode和TableViewModel
protocol ViewModelProtocol {
    associatedtype DataType //定义用语TableView,CollectionView的数据模型
    
    var datas: [[DataType]] { get set } //用于存储数据的数组,二维数组,满足多个section的要求
    
    associatedtype ViewType //定义View的类型,主要有UICollectionView,UITableView
    associatedtype CellType //定义Cell的类型,主要有UITableViewCell,UICollectionViewCell
    
    func cellConfig(_ view: ViewType, datas: [[DataType]], indexPath: IndexPath) -> CellType //定义方法,用于返回cell
}
  • 协议中并未定义Identifier来获取需要展示的cell,cell的获取部分交由外部进行提供,这样可以更灵活的适用于多样式的cell展示

CollectionViewModel

  • 通过typealias重定义UICollectionView的协议
    typealias CollectionViewProtocol = UICollectionViewDelegate & UICollectionViewDataSource & UICollectionViewDelegateFlowLayout
  • 因为extension不能的一些限制,所以通用的CollectionViewModel采用OOP的方式实现
class CollectionViewModel<T>: NSObject, ViewModelProtocol, CollectionViewProtocol {

    typealias DataType = T
    typealias ViewType = UICollectionView
    typealias CellType = UICollectionViewCell
    
    var datas: [[T]] = []
    //子类需要重写这个方法返回已经UICollectionViewCell
    func cellConfig(_ view: UICollectionView, datas: [[T]], indexPath: IndexPath) -> UICollectionViewCell {
        return UICollectionViewCell()
    }
    //可根据子类的样式重写需要的属性,主要用于Cell的样式
    var minimumLineSpacing: CGFloat { return 0 }
    var minimumInteritemSpacing: CGFloat { return 0 }
    var insetForSection: UIEdgeInsets { return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0) }
    var itemSize: CGSize { return CGSize(width: 0, height: 0) }
    
    init(_ collectionDatas: [[T]]) {
        datas = collectionDatas
        super.init()
    }
    
    //MARK: - UICollectionView DataSource
    func numberOfSections(in collectionView: UICollectionView) -> Int {
        return datas.count
    }
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return datas[section].count
    }
    
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        return cellConfig(collectionView, datas: datas, indexPath: indexPath)
    }
    
    //MARK: UICollectionView DelegateFlowlayout
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        //默认是page类型
        let itemSizeWith = itemSize.width == 0 ? collectionView.bounds.size.width : itemSize.width
        let itemSizeHeight = itemSize.height == 0 ? collectionView.bounds.size.height : itemSize.height
        return CGSize(width: itemSizeWith, height: itemSizeHeight)
    }
    
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
        return insetForSection
    }
    
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
        return minimumLineSpacing
    }
    
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
        return minimumInteritemSpacing
    }
}

TableViewModel

  • 通过typealias重定义UITableView的协议
    typealias TableViewProtocol = UITableViewDelegate & UITableViewDataSource
class TableViewModel<T>: NSObject, ViewModelProtocol, TableViewProtocol {
    typealias DataType = T
    
    typealias ViewType = UITableView
    typealias CellType = UITableViewCell
    
    var datas: [[T]] = []
    
    func cellConfig(_ view: UITableView, datas: [[T]], indexPath: IndexPath) -> UITableViewCell {
        return UITableViewCell()
    }
    
    func caculateHeight(_ indexPath: IndexPath) -> CGFloat {
        return 0
    }
    
    var cellHeight: CGFloat = -1
    
    init(_ tableDatas: [[T]]) {
        datas = tableDatas
        super.init()
    }
    
    //MARK: - UITableViewDelegate
    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        guard cellHeight > 0 else {
            return caculateHeight(indexPath)
        }
        return cellHeight
    }
    
    //MARK: - UITableViewDataSource
    func numberOfSections(in tableView: UITableView) -> Int {
        return datas.count
    }
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return datas[section].count
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        return cellConfig(tableView, datas: datas, indexPath: indexPath)
    }
}

相关文章

  • Swift3.0 Controller瘦身

    缘由 iOS开发,我们常用的组件UITableView,UICollectionView,通过代理的方式实现数据的...

  • Controller瘦身

    在我们使用传统的MVC设计模式的时候,通常写着写着C中的代码就会变得又多又乱,今天通过一个简单的实例来了解MVP设...

  • Controller 的瘦身

    讨论下Controller 瘦身.在此之前一直想把tableview的代理在controller中干掉 ,可是一直...

  • MVVM与Controller瘦身实践

    前言 MVC是一个做iOS开发都知道的设计模式,也是Apple官方推荐的设计模式。实际上,Cocoa Touch就...

  • iOS - Controller 瘦身简析

    在《iOS 常见架构一览》中提到, 由于iOS 开发模式中没有在设计上规范的子组件所在位置,若使用不当,会导致UI...

  • 如何给View Controller"瘦身"

    objc.io 是一个非常有名的 iOS 开发博客,它上面的第一课 《Lighter View Controlle...

  • 如何将controller瘦身?

    前阵子,看到了一篇关于将controller瘦身的文章,很多同学则是一直都是将数据请求放在controlle...

  • 关于controller的瘦身计划

    偶然在objc.io中看过一篇关于controller瘦身的文章.之后又从唐大神的公众号那了解到了一些给VC减肥的...

  • iOS 开发中为controller 瘦身

    在以往的开发中,使用MVC架构模式的时候还是居多的,MVC方便的是职责比较明确,View负责界面的展示,Model...

  • [转载]-MVVM与Controller瘦身实践

    收录一篇很有料的的文章,相信大家一样可以获得很多启发! [MVVM与Controller瘦身实践]http://w...

网友评论

    本文标题:Swift3.0 Controller瘦身

    本文链接:https://www.haomeiwen.com/subject/sshhvttx.html