Swift3.0系列之UITableview和UICollectionView的联动

由于公司的项目是OC实现的,现在自己又在学swift,所以自己抽空写了swift版本的,目前整个项目完成了1/3吧。先看下今天要说的效果图:

联动.gif

这是基于上次iOS将数据从controller里分离出来减轻controller的压力这篇文章中的效果做的,只是那边是OC,现在用swift实现,这里就不分离数据了。

联动的原理:点击左边的tableView的时候刷新右边collectionView的数据源。

下面是代码实现(有几句关键代码我会提取出来以及重现几个开发中遇到的问题):

关键代码

一开始默认选中tableview的第0个row

 self.tableView(self.tableview, didSelectRowAt: NSIndexPath.init(row: 0, section: 0) as IndexPath)

tableview的didSelectRowAt indexPath代理实现

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        ///cell单选
        for i :Int in 0 ..< self.dataArr.count{
           let j:NSIndexPath = NSIndexPath.init(row: i, section: indexPath.section)
           let cell :UITableViewCell = tableView.cellForRow(at: j as IndexPath)!
            cell.backgroundColor = BACKGROUND_Color
            cell.textLabel?.textColor = .black
        }
        let cell :UITableViewCell = tableView.cellForRow(at: indexPath)!
        cell.backgroundColor = .clear
        cell.textLabel?.textColor = .red
        loadRightData(menuId: (self.leftData?.data?[indexPath.row].id)!)//获取到参数并加载右边数据
    }

开发中遇到的问题(可能是没去看swift的说明[尴尬])

由于右边的collectionView的section只需头部不需要尾部,所以只注册了header,在实现UICollectionViewDelegateFlowLayout代理的时候只实现了header的大小(和OC做法一致),然后Xcode给我报了个错,如下图:

error.jpeg

于是我除了返回header的大小,还返回了footer的大小

 //section头部高度
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
        
        return CGSize(width:self.collection.frame.size.width,height:30)
    }
    //section尾部高度
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
        
        return CGSize(width:self.collection.frame.size.width,height:0)
    }

具体代码实现

controller.swift代码

import UIKit
import HandyJSON
let ZLMCollectID = "item"
let ZLMHeaderID = "header"
class ZLMCategoryViewController: ZLMBaseViewController {

 var dataArr:Array<ZLMCateDataModel?> = []{ didSet { setDataSource() }
 }
 var rightDataArr:Array<CategoryModelList?> = []
 
 var leftData:ZLMCategoryModel?
 
 var rightData:ZLMCategoryRightModel?
 
 lazy var tableview :UITableView = {[weak self](result) in
     
     let tab = UITableView(frame: CGRect(x:0,y:64,width:ScreenW/4,        height:ScreenH-49))
     tab.delegate = self
     tab.dataSource = self
     tab.backgroundColor = BACKGROUND_Color
     tab.tableFooterView = UIView()//去除无数据的空tableViewCell
     return tab
 }()
 
 lazy var collection :UICollectionView = {
     
     let defaultLayout = UICollectionViewFlowLayout()
     
     defaultLayout.scrollDirection = UICollectionViewScrollDirection.vertical//设置垂直显示
     
     defaultLayout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0)//设置边距
     
     defaultLayout.itemSize = CGSize(width:(ScreenW/4*3-10)/3, height: 100)
     
     defaultLayout.minimumLineSpacing = 5.0 //每个相邻的layout的上下间隔
     
     defaultLayout.minimumInteritemSpacing = 5.0 //每个相邻layout的左右间隔
     
     defaultLayout.headerReferenceSize = CGSize(width: 0, height: 0)
     
     defaultLayout.footerReferenceSize = CGSize(width: 0, height: 15)
     let collect = UICollectionView(frame:CGRect(x:ScreenW/4,y:64,width:ScreenW/4*3,height:ScreenH-49-64),collectionViewLayout: defaultLayout)
     
     collect.backgroundColor = .white
    //注册cell
     collect.register(UINib(nibName: "ZLMCateCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: ZLMCollectID)
    //注册头部
//        collect.register(ZLMHeaderCollectionReusableView.self, forSupplementaryViewOfKind:UICollectionElementKindSectionHeader, withReuseIdentifier: ZLMHeaderID)  //用代码实现的view
     
     collect.register(UINib(nibName: "ZLMHeaderCollectionReusableView", bundle: nil), forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: ZLMHeaderID)//用xib实现的view
     
     collect.delegate = self
     
     collect.dataSource = self
     
     return collect
 }()

 override func viewDidLoad() {
     super.viewDidLoad()
     
    //自定义的一个自定义controller导航栏方法
    configNavigationBar(controllerTitle:"分类",leftBtnHidden: true, rightBtnHidden: true, rightBtnTitle: "")
     
     view.addSubview(tableview)
     
     view.addSubview(collection)
     
     loadLeftData()
 }

 override func didReceiveMemoryWarning() {
     super.didReceiveMemoryWarning()
     // Dispose of any resources that can be recreated.
 }
}
extension ZLMCategoryViewController:UITableViewDelegate,UITableViewDataSource{
 func numberOfSections(in tableView: UITableView) -> Int {
     return 1
 }
 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
     return self.dataArr.count
 }
 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
     
     let cellID = "cellId"
     
     var cell = tableView.dequeueReusableCell(withIdentifier: cellID)
     
     if cell == nil {
         cell = UITableViewCell(style: .default,reuseIdentifier:cellID)
     }
    cell?.backgroundColor = BACKGROUND_Color
     
    cell?.textLabel?.text =  self.dataArr[indexPath.row]?.appCategoryName
     
    cell?.textLabel?.textAlignment = NSTextAlignment(rawValue: 1)!
    cell?.textLabel?.font = UIFont.systemFont(ofSize: 12)
    cell?.textLabel?.textColor = RGBA(r:0.0,g:0.0,b:0.0,a:1.0)
    cell?.accessoryType = .none
    return cell!
 }
 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
     ///cell单选
     for i :Int in 0 ..< self.dataArr.count{
        let j:NSIndexPath = NSIndexPath.init(row: i, section: indexPath.section)
        let cell :UITableViewCell = tableView.cellForRow(at: j as IndexPath)!
         cell.backgroundColor = BACKGROUND_Color
         cell.textLabel?.textColor = .black
     }
     let cell :UITableViewCell = tableView.cellForRow(at: indexPath)!
     cell.backgroundColor = .clear
     cell.textLabel?.textColor = .red
     loadRightData(menuId: (self.leftData?.data?[indexPath.row].id)!)
 }
}
extension ZLMCategoryViewController:UICollectionViewDelegate,UICollectionViewDataSource{
 func numberOfSections(in collectionView: UICollectionView) -> Int {
     return rightDataArr.count
 }
 
 func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
     return (rightDataArr[section]?.categoryModels!.count)!
 }
 
 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
     
     let cell:ZLMCateCollectionViewCell = collectionView.dequeueReusableCell(withReuseIdentifier: ZLMCollectID, for: indexPath as IndexPath) as! ZLMCateCollectionViewCell
     
     cell.model = rightDataArr[indexPath.section]?.categoryModels?[indexPath.row]
 
     return cell
     
 }
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView{
 
 var sectionView = ZLMHeaderCollectionReusableView()
 if kind == UICollectionElementKindSectionHeader{
     
  sectionView = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: ZLMHeaderID, for: indexPath) as! ZLMHeaderCollectionReusableView
     sectionView.model  = rightDataArr[indexPath.section]
 }
 return sectionView
}
}
extension ZLMCategoryViewController:UICollectionViewDelegateFlowLayout{
 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
     
     let side :CGFloat = (self.collection.frame.size.width-6*8)/3.0-8.0
     return CGSize(width:side,height:side+20)
 }
 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
     
     return UIEdgeInsetsMake(0, 8, 0, 8)
 }
 //section头部高度
 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
     
     return CGSize(width:self.collection.frame.size.width,height:30)
 }
 //section尾部高度
 func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
     
     return CGSize(width:self.collection.frame.size.width,height:0)
 }
}
extension ZLMCategoryViewController{
//    func loadLeftData(){
//        NetworkTools.sharedInstance.loadCateLeft { (response) in
//            //response现在就是data
//            //遍历或是直接取就好了
//            self.dataArr = response             
//        }
//    }
 func loadLeftData(){
     let url = host+"categorys/findByGrade"
     let parameter = ["grade":"1"]
     NetworkTools.sharedInstance.request(type:.GET,url: url, parameters: parameter){ (response) in
         
         self.leftData = JSONDeserializer<ZLMCategoryModel>.deserializeFrom(json: response)
         if (self.leftData?.data?.count)! > 0{
             
             self.leftData?.data?.forEach({
                 self.dataArr.append($0)
             })
             self.tableview.reloadData()
             self.tableview.selectRow(at: NSIndexPath.init(row: 0, section: 0) as IndexPath, animated: true, scrollPosition: .bottom)
             self.tableView(self.tableview, didSelectRowAt: NSIndexPath.init(row: 0, section: 0) as IndexPath)
         }
     }
 }
 func loadRightData(menuId:Int) {
     let url = host+"categorys/"+"\(menuId)"+"/childs"
     
     NetworkTools.sharedInstance.request(type:.GET,url: url){ (response) in
         self.rightData = JSONDeserializer<ZLMCategoryRightModel>.deserializeFrom(json: response)
         if self.rightData?.code == 1{
             self.rightDataArr.removeAll()
             self.rightData?.data?.categoryModelList?.forEach({
                self.rightDataArr.append($0)
             })
             self.collection.reloadData()
         }
     }

 }
 func setDataSource() {
     tableview.reloadData()
 }
}

cell中的代码就不写了,

分类.jpeg

由于是公司项目,就不方便贴上demo了,有问题可评论留言哦。
以上。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容