• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Swift3.0轮播图

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

使用三个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)个")
    }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Swift5.3语言参考(七)属性发布时间:2022-07-18
下一篇:
[Swift]Array数组的swapAt函数发布时间:2022-07-18
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap