swift版筛选界面开发

  之前写过oc版本的筛选界面。最近开发一直在使用swift。再写一个swift版本的筛选。
 先上效果图:
图一
效果图二

我们要的效果是,点击第一组,根据内容联动第三组。

第一组,第二组为单选。第三组为多选

好了,简单说一下思路:

首先创建collectionView。再添加collectionView的头部试图和尾部试图。最后开始写筛选逻辑。

上代码:

private lazy var collection: UICollectionView = {
        let layout = UICollectionViewFlowLayout.init()
        layout.minimumLineSpacing = 12
        layout.sectionInset = UIEdgeInsets(top: 12, left: 16, bottom: 1, right: 15)
        let collection = UICollectionView.init(frame: CGRect.init(x: SCREEN_WIDTH - CGFloat(collectionWidth), y: 0, width: CGFloat(collectionWidth), height: SCREENH_HEIGHT), collectionViewLayout: layout)
        collection.backgroundColor = .white
        collection.delegate = self
        collection.dataSource = self
        collection.alwaysBounceVertical = true
        collection.showsVerticalScrollIndicator = true
        collection.register(YXScreenCell.self, forCellWithReuseIdentifier: "SwiftCollectionViewCell")
        collection.register(UICollectionReusableView.self, forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "SwiftFooterCollectionReusableView")
        collection.register(UICollectionReusableView.self, forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "SwiftHeaderCollectionReusableView")
        return collection
    }()
使用懒加载创建collectionView
这里的代码我直觉使用extension 方式实现代理
extension YXScreenView:UICollectionViewDelegate ,UICollectionViewDataSource, UICollectionViewDelegateFlowLayout{
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        if section == 0 {
            return self.screenClassModelList.count
        }
        if section == 1 {
            return 2
        }
        if section == 2 {
            return self.screenTowClassModelList.count
        }
        return 0

    }
    func numberOfSections(in collectionView: UICollectionView) -> Int {
        return self.list.count
    }
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cellString = "SwiftCollectionViewCell"
        let cell = collection.dequeueReusableCell(withReuseIdentifier: cellString, for: indexPath) as! YXScreenCell
        if list.count > 0 {
            let obj = (list[indexPath.section][indexPath.item] as! YXscreenClassModel)
            if indexPath.section == 0 {
                if scenarioArr.contains(obj) {
                    cell.buleColorCell()
                } else {
                    cell.originalColorCell()
                }
            } else if indexPath.section == 1 {
                if taskTypeArr.contains(obj) {
                    cell.buleColorCell()
                } else {
                    cell.originalColorCell()
                }
            } else if indexPath.section == 2 {
                if contentArr.contains(obj) {
                    cell.buleColorCell()
                } else {
                    cell.originalColorCell()
                }
            }
            cell.classModel = obj
        }
        
        return cell
    }
//设置 区头和区尾
   func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
    var reusabView = UICollectionReusableView.init()
       if kind == UICollectionView.elementKindSectionHeader  {
        let headerView:UICollectionReusableView = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "SwiftHeaderCollectionReusableView", for: indexPath)
        for v in headerView.subviews{
            v.removeFromSuperview()
        }
        let heardLab = UILabel.init()
        heardLab.font = .systemFont(ofSize: 14)
        heardLab.textColor = UIColor.color136
        headerView.addSubview(heardLab)
        heardLab.snp_makeConstraints { (make) in
            make.left.equalTo(16)
            make.bottom.equalTo(0)
        }
        let hearTestArr = ["任务场景","任务类型","任务内容"]
        heardLab.text = hearTestArr[indexPath.section]
        reusabView = headerView
       }
       
       else {
        let footerView:UICollectionReusableView = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "SwiftFooterCollectionReusableView", for: indexPath)
        for v in footerView.subviews{
            v.removeFromSuperview()
        }
        let screenFoot = YXScreenFootView.init()
        footerView.addSubview(screenFoot)
        screenFoot.snp_makeConstraints { (make) in
            make.left.right.top.bottom.equalTo(footerView)
        }
        screenFoot.delegate = self
        reusabView = footerView
       }
       return reusabView
    }//footView是我单独封装出来的一个view。就是图中的 确定,重置按钮,和选择时间的按钮
     //尾部高度
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
        if section == 2 {
            return CGSize(width: collectionWidth, height: 155)
        }else{
            return CGSize(width: 0, height: 0)
        }
    }
    //头部高度设置
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
        if section == 0 {
            return CGSize(width: collectionWidth, height: 60)
        }else{
            return CGSize(width: collectionWidth, height: 44)
        }
    }
    //设置两个cell的左右间距
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
        return 12
    }

好了,到这里基本的collectionview试图应该差不多出来了。下面开始写核心的筛选逻辑。

//这是第二组 写死的数组模型
    var cellSectionTow: [YXscreenClassModel] = [YXscreenClassModel]()
    //第一组section里的几个数据
    private var screenOneSectionlList = [YXScrennDataModel]()
    //这是第一组下每个taskDetailList里的数组模型
    private var oneList = [[YXscreenClassModel]]()
    //第一组Section数组模型
    private var screenClassModelList = [YXscreenClassModel]()
    //第三组section数组模型
    private var screenTowClassModelList = [YXscreenClassModel]()
    //最终给cell赋值的模型。里面放三组数组模型
    var list :[Array] = [Array<Any>]()
前两组为单选,所以我定义了两个index变量:
var indexPathRow: IndexPath?   第一组的indexPatch
var indexPathTow: IndexPath?   第三组的indexPatch
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
//之前用indexPatch进行记录,但是这样太麻烦了。换个思路
    let cell = collection.cellForItem(at: indexPath) as! YXScreenCell
//通过cell拿到对应的model
    let model = cell.classModel as! YXScreenClassModel
       if indexPath.section == 0 {
          if !scenarioArr.contains(model) {  //说明之前点击过了,这次点击的不是同一个cell
                scenarioArr.removeAllObjects()
                scenarioArr.add(model)
                reloadSection(index: indexPath.item)
                collection.reloadData()
            }
     }
           
            
if indexPath.section == 1 {//和第一组的方法一样
            if !taskTypeArr.contains(model) {
                taskTypeArr.removeAllObjects()
                taskTypeArr.add(model)
                collection.reloadData()
            }
        }
        //多选,这个再次点击相同的是可以取消高亮的。
        if indexPath.section == 2 {
           if contentArr.contains(model) {
                contentArr.remove(model)
            } else {
                contentArr.add(model)
            }
            collection.reloadData()
}

//刷新第三组section
    func reloadSection(index:Int){
        let section3Data: [YXscreenClassModel] = self.oneList[index]
        self.screenTowClassModelList.removeAll()
        for m in section3Data {
            //KNLog(m.name)
            let classModel = YXscreenClassModel.init()
            classModel.name = m.name
            screenTowClassModelList.append(classModel)
        }
        list.removeLast()
        list.insert(screenTowClassModelList, at: 2)
        reloadSectionTowData()
        contentArr.removeAllObjects()
        removeCellArr()
    }
//这个是刷新collectionView的方法。必须要用动画方法。否则试图会上下跳。
func reloadSectionTowData(){
        UIView.performWithoutAnimation {
            let indeS = NSIndexSet.init(index: 2)
            collection.reloadSections(indeS as IndexSet)
        }
    }
#最后cell.classModel 这里模型。用的class方式。
//MARK:筛选
class YXscreenClassModel: HandyJSON {
    required init(){
        
    }
    //名字
    var name: String?
    //添加属性是否高亮
    var isSelect:Bool? = false
    
    var code: String?
    var taskSenceCode:String?
}

写完了,谢谢大家!

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

推荐阅读更多精彩内容