66-Swift之旋转菜单(UICollectionView)

一 、 旋转菜单的需要的知识点

  • 重写 UICollectionView 的布局类UICollectionViewLayout

  • 重写UICollectionView 的触摸方法。

  • 余弦定理

二 、 详细方法的介绍和展示

1、 重写 UICollectionView 的布局类需要重写下面几个方法

  • override func prepare() :: 初始化 Items 的函数。初始化之前先调用父类的该方法(super.prepare())。

  • override func layoutAttributesForElements(in rect: CGRect) :: 返回 Items 的所有 UICollectionViewLayoutAttributes 对象。

  • override var collectionViewContentSize: CGSize :: 设置UICollectionView 的视图范围。

1> ** prepare()** 的函数重写
override func prepare() {
    super.prepare()
    // TODO: 获取圆盘上Item的个数
    let itemCount = self.collectionView?.numberOfItems(inSection: 0)
    // TODO: 获取圆盘的半径(获取CollectionView的宽和高的最小的一个)
    let diskRadii = min((self.collectionView?.bounds.width)!, (self.collectionView?.bounds.height)!) * 0.5
    // TODO: 计算圆盘的圆心
    let diskCenterPoint = CGPoint.init(x: (self.collectionView?.bounds.width)! * 0.5, y: (self.collectionView?.bounds.height)! * 0.5)
    // TODO: 检测CollectionVie的总高度是否小于默认的ItemRadii高度
    ItemRadii = diskRadii > 40 ? ItemRadii:diskRadii
    // TODO: 计算每一个Item的位置和大小
    for i in 0..<itemCount! {
        // TODO: 获取每个Item系统的 LayoutAttribute
        let layoutAttribute = UICollectionViewLayoutAttributes.init(forCellWith: IndexPath.init(row: i, section: 0))
        // TODO: 设置大小
        layoutAttribute.size = CGSize.init(width: ItemRadii * 2, height: ItemRadii * 2)
        // TODO: 计算Item中心距离圆盘的中心距离
        let disDiff = diskRadii - ItemRadii
        // TODO: 计算每个Items的中心位置
        let itemCenterX = diskCenterPoint.x + cos(CGFloat(2 * .pi/CGFloat(itemCount!) * CGFloat(i))+rotationAngle) * disDiff
        let itemCenterY = diskCenterPoint.y + sin(2 * .pi / CGFloat(itemCount!) * CGFloat(i)+rotationAngle) * disDiff
        // TODO: 设置Item的中心
        layoutAttribute.center = CGPoint.init(x: itemCenterX, y: itemCenterY)
        // TODO: 存储Item的layoutAttributes
        LayoutAttributes.add(layoutAttribute)
    }
}
2> layoutAttributesForElements(in rect: CGRect) 函数的重写
// MARK: Item的layoutAttribute属性的返回
override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
     return (LayoutAttributes as! [UICollectionViewLayoutAttributes])
}
3> collectionViewContentSize: CGSize 函数的重写
// MARK: 设置圆盘的大小
override var collectionViewContentSize: CGSize {
    get {
        return (self.collectionView?.frame.size)!
    }
    set {
        self.collectionViewContentSize = newValue
    }
}

2、 重写UICollectionView 的触摸方法

在重写UICollectionView 的触摸方法时,由于Swift 对 UICollectionView 对类的扩展需要使用到 OC ,还要桥接文件。本简书就使用继承来解决这个问题。我们要重写的UICollectionView触摸的方法如下:

  • func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?)
    通过该方法,你可以限制触摸的范围,最重要的是记录开始触摸的一点。
  • func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?)
    触摸后手势的移动,处理圆盘的转动。这里需要注意:有一个角度的计算。使用到的知识就是 三角函数的 余弦定理
1> touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) 的函数的重写
// MARK: 设置触摸起始点
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    // 获取触摸的点
    let touchPoint = touches.first?.location(in: self)
    lastPoint = touchPoint!
}
2> **func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) **的重写函数
// MARK: 移动旋转处理
override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
    let discCenter = CGPoint.init(x: self.bounds.width * 0.5, y: self.bounds.height * 0.5)
    // 获取触摸的点
    let touchPoint = touches.first?.location(in: self)
    // 计算滑动的角度
    let rads = self.computingAngle(startPoint1: lastPoint, endPoint1: touchPoint!, discCenter: discCenter)
    totalRads += rads
    let FlowLayout = self.collectionViewLayout as! RotatingMenuViewLayout
    FlowLayout.rotationAngle = totalRads * rotationRate
    // CollectionView重新布局
    FlowLayout.invalidateLayout()
    // 更新最后的一点
    lastPoint = touchPoint!
}
3> 角度计算函数
// MARK: 计算移动的角度
func computingAngle(startPoint1:CGPoint,endPoint1:CGPoint,discCenter:CGPoint) -> CGFloat {
    // 计算开始点和结束点距离中心点的长度
    let a =  startPoint1.x - discCenter.x
    let b =  startPoint1.y - discCenter.y
    let c =  endPoint1.x - discCenter.x
    let d =  endPoint1.y - discCenter.y
    // 使用余弦定理
    let shang =  a*c + b*d
    let yu = sqrt(a * a + b * b) * sqrt(c*c + d*d)
    // 使用反余弦求得角度
    let rads = acos( Double(shang) / Double(yu))
    var plusminus = -1
    if (endPoint1.x - startPoint1.x < 0 && d > 0)  {
        plusminus = 1
    }else if endPoint1.y - startPoint1.y < 0 && a < 0 {
        plusminus = 1
    }else if endPoint1.x - startPoint1.x > 0 && d < 0 {
        plusminus = 1
    }else if endPoint1.y - startPoint1.y > 0 && a > 0 {
        plusminus = 1
    }else if endPoint1.x - startPoint1.x > 0 && d > 0 {
        plusminus = -1
    }else if a > 0 && endPoint1.y - startPoint1.y < 0 {
        plusminus = -1
    }else if endPoint1.x - startPoint1.x < 0 && d < 0 {
        plusminus = -1
    } else if  endPoint1.y - startPoint1.y > 0 && a < 0{
        plusminus = -1
    }
    // 转化成角度
    return  CGFloat(rads) *  CGFloat(plusminus)
}

这里有带优化,目前也是最接近完美的一种方法处理圆盘的旋转方向避免不要的卡顿。

三 、 旋转菜单的创建

1> 创建UICollectionView 对象。

// MARK: 创建UICollectionView
func createCollectionView() {
    let FlowLayout = RotatingMenuViewLayout.init()
    FlowLayout.ItemRadii = 40
    FlowLayout.rotationAngle = .pi
    let CollectionView = RotatingMenuCollectionView.init(frame: CGRect.init(x: 0, y: 100, width: view.bounds.width, height: 400), collectionViewLayout: FlowLayout)
    CollectionView.delegate = self
    CollectionView.dataSource = self
    self.view.addSubview(CollectionView)
    CollectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "NetWork小贱")
    // 添加中图片
    let centerImageV = UIImageView.init(frame: CGRect.init(origin: CGPoint.zero, size: CGSize.init(width: CollectionView.bounds.height - 240, height: CollectionView.bounds.height - 240)))
    centerImageV.center = CGPoint.init(x: CollectionView.bounds.width * 0.5, y: CollectionView.bounds.height * 0.5)
    centerImageV.image = UIImage.init(named: "taiji.png")
    centerImageV.contentMode = .scaleAspectFill
    CollectionView.addSubview(centerImageV)
    
}

2> 代理方法的实现

// MARK: 代理
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
     return (dataArray?.count)!
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let Cell = collectionView.dequeueReusableCell(withReuseIdentifier: "NetWork小贱", for: indexPath)
    Cell.contentView.backgroundColor = UIColor.red
    Cell.contentView.layer.cornerRadius = Cell.contentView.bounds.width * 0.5
    // 添加标记
    Cell.tag = indexPath.row
    // 添加一个手势
    let tap = UITapGestureRecognizer.init(target: self, action: #selector(itemDidSelecd(_ :)))
    Cell.addGestureRecognizer(tap)
    
    // 标记
    for item in Cell.contentView.subviews {
        item.removeFromSuperview()
    }
    let markL = UILabel.init(frame: Cell.bounds)
    markL.text = dataArray![indexPath.row]
    markL.font = UIFont.boldSystemFont(ofSize: 30)
    markL.textAlignment = .center
    Cell.contentView.addSubview(markL)
    return Cell
}

// 由于Cell的点击触发事件
func itemDidSelecd(_ tap:UITapGestureRecognizer)  {
    let AlertV = UIAlertController.init(title: nil, message: dataArray![(tap.view?.tag)!], preferredStyle: .alert)
    let sureAction = UIAlertAction.init(title: "确定", style: .cancel, handler: nil)
    AlertV.addAction(sureAction)
    self.present(AlertV, animated: true, completion: nil)
}

五、最终的效果展示

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

推荐阅读更多精彩内容