LayoutKit 简单使用
创建
使用 tableView / collectionView 初始化 ReloadableViewLayoutAdapter
如: let reloadableViewLayoutAdapter = ReloadableViewLayoutAdapter(reloadableView: tableView)
设置 dataSource
和 delegate
1 | tabView.dataSource = reloadableViewLayoutAdapter |
关于 talbeView cellForRowAtIndexPath
1 | /// - Warning: Subclasses that override this method must call super |
关于数据来源
在封装数据的同时, 设置的单元格内的约束
1 | // 封装数据 |
关于单元格布局
1 | import LayoutKit |