码迷,mamicode.com
首页 > 编程语言 > 详细

Swift3.0 轮播图

时间:2016-12-22 11:12:55      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:name   nts   images   sdi   font   sar   出错   ons   xca   

使用三个UIButton实现无限轮播:https://github.com/LXfeiYu/LXCarouselImages.git

喜欢的朋友给个星!!!

功能:

1.可以选择开启和关闭定时器

2.有点击事件

使用方法:

//添加轮播图
        let showView = LXShowView.init(frame: CGRect(x:0,y:20,width:self.view.frame.size.width,height:200))
        showView.isUserInteractionEnabled = true
        showView.delegate = self
        //关闭定时器
//        showView.isOpenTimer = false
        self.view.addSubview(showView)
        
        //数据
        let path = Bundle.main.path(forResource: "imageData", ofType: "json")
        let jsonData = NSData.init(contentsOfFile: path!)
        //方法1 使用NSJSONSerialization解析
        do {
            let json = try JSONSerialization.jsonObject(with: jsonData! as Data, options:[]) as! [String:AnyObject]
            
            let array=json["json"] as! NSArray
            
            for imageData in array{
                
               let dict = imageData as! NSDictionary
                
//                print(dict["title"]!)
                let model = Model.init(imageName: dict["imageName"] as! String, title: dict["title"] as! String)
                showView.dataArray.append(model)
            }
        }catch let error as NSError{
            print("解析出错。\(error.localizedDescription)")
            
        }

点击事件

 //点击轮播图
    func clickImageView(index:NSInteger){
        print("点击第\(index)个")
    }

 

Swift3.0 轮播图

标签:name   nts   images   sdi   font   sar   出错   ons   xca   

原文地址:http://www.cnblogs.com/xingsmile/p/6210179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!