Swift 类似网易新闻的滑动菜单

gif.gif

gif 可以右键在新的标签页中打开查看

简单实现类似这种的 滑动菜单 新手Swift新手 大神就别看了

import UIKit

class HomeViewController: UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UIScrollViewDelegate {

    let WIDTH = UIScreen.mainScreen().bounds.width / 375
    let HEIGTH = UIScreen.mainScreen().bounds.height / 667
    let SCREENWIDTH = UIScreen.mainScreen().bounds.width
    let SCREENHEIGTH = UIScreen.mainScreen().bounds.height

    var collectionView: UICollectionView!
    var buttonsArray: NSMutableArray!
    var titlesArray: NSMutableArray!
    var lineView: UIView!
    override func viewDidLoad() {
        super.viewDidLoad()
        
        self.automaticallyAdjustsScrollViewInsets = false
        self.navigationController?.automaticallyAdjustsScrollViewInsets = false
        
        self.initButtons()
        self.initCollectionView()
    }
    
    func initButtons() {
        
        buttonsArray = NSMutableArray()
        titlesArray = ["分类","品牌","首页","专题","品牌"]
        
        for var i = 0;i<titlesArray.count;i++ {
            
            let button = UIButton.init(type: .System)
            button.frame = CGRectMake(SCREENWIDTH * CGFloat (i) / 5.0, 0, SCREENWIDTH / 5.0, 40 * HEIGTH)
            button.tag = i
            button.backgroundColor = UIColor.blackColor()
            button.setTitleColor(UIColor.lightGrayColor(), forState: .Normal)
            if i == 2 {
                
            button.titleLabel?.font = UIFont.systemFontOfSize(16.0 * WIDTH)
            button.setTitleColor(UIColor.whiteColor(), forState: .Normal)
                
            }
            button.titleLabel?.font = UIFont.systemFontOfSize(15.0 * WIDTH)
            button.setTitle(titlesArray[i] as? String, forState: .Normal)
            button.addTarget(self, action: "click:", forControlEvents: .TouchUpInside)
            self.view.addSubview(button)
            buttonsArray.addObject(button)
            
        }
        lineView = UIView.init(frame: CGRectMake(15 * WIDTH + (SCREENWIDTH / 5.0) * 2, 38 * HEIGTH, SCREENWIDTH / 5.0 - 30 * WIDTH, 2 * HEIGTH))
        lineView.backgroundColor = UIColor.whiteColor()
        self.view.addSubview(lineView)
        
    }
    func click (btn: UIButton) {
        
        for btt in buttonsArray {
            
            btt.titleLabel?!.font = UIFont.systemFontOfSize(15)
            btt.setTitleColor(UIColor.lightGrayColor(), forState: .Normal)
        }
        
        btn.titleLabel?.font = UIFont.systemFontOfSize(16 * WIDTH)
        btn.setTitleColor(UIColor.whiteColor(), forState: .Normal)
        self.collectionView.scrollToItemAtIndexPath(NSIndexPath.init(forItem: btn.tag, inSection: 0), atScrollPosition: .None, animated: true)
        
        UIView.animateWithDuration(0.3, animations: { () -> Void in
            
            self.lineView.frame = CGRectMake(15 * WIDTH + (UIScreen.mainScreen().bounds.width / 5.0) * CGFloat (btn.tag), 38 * HEIGTH, UIScreen.mainScreen().bounds.width / 5.0 - 30 * WIDTH, 2)
            
            }) {(Bool) -> Void in
                
            }
    }
    
    func initCollectionView() {
        
        let flowLayout = UICollectionViewFlowLayout()
        flowLayout.scrollDirection = .Horizontal
        flowLayout.itemSize = CGSizeMake(UIScreen.mainScreen().bounds.width, UIScreen.mainScreen().bounds.height - 88 * HEIGTH)
        flowLayout.minimumLineSpacing = 0
        flowLayout.minimumInteritemSpacing = 0
        
        collectionView = UICollectionView.init(frame: CGRectMake(0, 40 * HEIGTH, UIScreen.mainScreen().bounds.width, UIScreen.mainScreen().bounds.height - 88 * HEIGTH), collectionViewLayout: flowLayout)
        collectionView.delegate = self
        collectionView.dataSource = self
        collectionView.pagingEnabled = true
        collectionView.scrollToItemAtIndexPath(NSIndexPath.init(forRow: 2, inSection: 0), atScrollPosition: .None, animated: true)
        self.view.addSubview(collectionView)
        collectionView.registerClass(HomeCollectionViewCell.classForKeyedArchiver(), forCellWithReuseIdentifier: "hCell")
        collectionView.registerClass(KindCollectionViewCell.classForKeyedArchiver(), forCellWithReuseIdentifier: "kCell")
        collectionView.registerClass(BrandCollectionViewCell.classForKeyedArchiver(), forCellWithReuseIdentifier: "bCell")
        collectionView.registerClass(SubjectCollectionViewCell.classForKeyedArchiver(), forCellWithReuseIdentifier: "sCell")
        collectionView.registerClass(GiftCollectionViewCell.classForKeyedArchiver(), forCellWithReuseIdentifier: "gCell")
        
    }
    
    func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        
        return 5
    }
    
    func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
        
        if indexPath.item == 0 {
            let cell = collectionView.dequeueReusableCellWithReuseIdentifier("kCell", forIndexPath: indexPath) as! KindCollectionViewCell
            
            weak var weakSelf = self
            cell.initClosure({ (str) -> Void? in
                
//                let url = "http://mobile.iliangcang.com/goods/goodsShare?a=b&page=1&count=10&coverId=1&cat_code=$&app_key=iPhone&v=3.0.0&sig=97E9576F-B96F-48FD-BE0E-CD84610BC975"
                
                let common = CommonViewController()
//                common.urlStr = url.stringByReplacingOccurrencesOfString("$", withString: str)
                common.urlStr = str
                common.hidesBottomBarWhenPushed = true
                weakSelf!.navigationController?.pushViewController(common, animated: true)
                return nil
             })
            
            return cell
            
        }else if indexPath.item == 1 {
            let cell = collectionView.dequeueReusableCellWithReuseIdentifier("bCell", forIndexPath: indexPath) as! BrandCollectionViewCell
            return cell
        }else if indexPath.item == 2 {
            let cell = collectionView.dequeueReusableCellWithReuseIdentifier("hCell", forIndexPath: indexPath) as! HomeCollectionViewCell
            cell.myClosure = { (content_id: String) -> Void in
                
                let shopVC = ShopViewController()
                let url = "http://mobile.iliangcang.com/goods/goodsList?a=b&list_id=$&count=10&page=1&app_key=iPhone&v=3.0.0&sig=97E9576F-B96F-48FD-BE0E-CD84610BC975"
                shopVC.urlStr = url.stringByReplacingOccurrencesOfString("$", withString: content_id)
                self.navigationController?.pushViewController(shopVC, animated: true)
            }
            return cell
        }else if indexPath.item == 3 {
            
            let cell = collectionView.dequeueReusableCellWithReuseIdentifier("sCell", forIndexPath: indexPath) as! SubjectCollectionViewCell
            
            return cell
            
        }else {
            
            let cell = collectionView.dequeueReusableCellWithReuseIdentifier("gCell", forIndexPath: indexPath) as! GiftCollectionViewCell
            
            return cell
            
        }
        
    }
    
    func scrollViewDidEndDecelerating(scrollView: UIScrollView) {
        
        for btt in buttonsArray {
            
            btt.titleLabel?!.font = UIFont.systemFontOfSize(15)
            btt.setTitleColor(UIColor.lightGrayColor(), forState: .Normal)
        }
       
        UIView.animateWithDuration(0.3) { () -> Void in
            
        self.lineView.frame = CGRectMake(15 * WIDTH + (UIScreen.mainScreen().bounds.width / 5.0) * CGFloat (self.collectionView.contentOffset.x / (UIScreen.mainScreen().bounds.width)), 38 * HEIGTH, UIScreen.mainScreen().bounds.width / 5.0 - 30 * WIDTH, 2)
        }
        
        let btn = buttonsArray.objectAtIndex(Int(self.collectionView.contentOffset.x / UIScreen.mainScreen().bounds.width))
        
        btn.titleLabel?!.font = UIFont.systemFontOfSize(16 * WIDTH)
        btn.setTitleColor(UIColor.whiteColor(), forState: .Normal)
        
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

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

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,088评论 4 62
  • 终于见到谷应老师。 意料之中,意料之外。 什么也不用说,她坐在那里,微微一笑,世界就安静了。 看她从容优雅仿佛冰肌...
    时光蜜糖阅读 598评论 5 50
  • 刘备是个什么样的人物,一直是大家所争议的。­ 就连鲁迅也说演义上描述的刘备“似伪”。­ 于是又有很多人就以为抓住了...
    明鸳阅读 458评论 1 3
  • 二娃去WWA
    bullock阅读 192评论 0 1