亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS開發實現轉盤菜單Swift

發布時間:2021-06-22 16:10:54 來源:億速云 閱讀:206 作者:chen 欄目:編程語言

本篇內容主要講解“iOS開發實現轉盤菜單Swift”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“iOS開發實現轉盤菜單Swift”吧!

前言

使用Swift實現的轉盤菜單,主要用到UIBezierPathCALayer遮罩繪制扇形UIViewCATransform3DMakeRotation實現旋轉動畫。代碼設計使用默認configureCallback回調方便創建和設置基本屬性,參考UITableView代理和數據源模式,支持AutoLayoutFrame

效果圖

iOS開發實現轉盤菜單Swift

1.遮罩繪制扇形View

計算扇形曲線位置,通過CALayermask屬性繪制出扇形UIView 核心代碼

func setMaskLayer(_ startAngle: CGFloat, endAngle: CGFloat) {
    let center = CGPoint(x: bounds.width * 0.5, y: bounds.height * 0.5)
    let layer = CAShapeLayer()
    path.addArc(withCenter: center, radius: bounds.width * 0.5, startAngle: startAngle, endAngle: endAngle, clockwise: true)
    path.addLine(to: center)
    layer.path = path.cgPath
    layer.rasterizationScale = UIScreen.main.scale
    layer.shouldRasterize = true
    self.layer.mask = layer
}

2.中間鏤空

func createHole(in view : UIView, radius: CGFloat)   {
    let path = CGMutablePath()
    path.addArc(center: view.center, radius: radius, startAngle: 0.0, endAngle: 2.0 * .pi, clockwise: true)
    path.addRect(CGRect(origin: .zero, size: view.bounds.size))
    let maskLayer = CAShapeLayer()
    maskLayer.path = path
    maskLayer.fillRule = .evenOdd
    view.layer.mask = maskLayer
    view.clipsToBounds = true
}

3.旋轉動畫

添加UIPanGestureRecognizerUITapGestureRecognizer手勢,根據手勢位置使用atan2函數計算旋轉角度,然后用CATransform3DMakeRotation圍繞Z軸旋轉做動畫 核心代碼

func handlePanGesture(_ sender: UIPanGestureRecognizer) {
    let location = sender.location(in: self)
    switch sender.state {
    case .began:
        startPoint = location
    case .changed:
        let radian1 = -atan2(startPoint.x - menuLayerView.center.x, startPoint.y - menuLayerView.center.y)
        let radian2 = -atan2(location.x - menuLayerView.center.x, location.y - menuLayerView.center.y)
        menuLayerView.transform = menuLayerView.transform.rotated(by: radian2 - radian1)
        startPoint = location
    default:
        let angle = 2 * CGFloat(Double.pi) / CGFloat(cells.count)
        var menuViewAngle = atan2(menuLayerView.transform.b, menuLayerView.transform.a)
        if menuViewAngle < 0 {
            menuViewAngle += CGFloat(2 * Double.pi)
        }
        var index = cells.count - Int((menuViewAngle + CGFloat(Double.pi / 4)) / angle)
        if index == cells.count {
            index = 0
        }
        setSelectedIndex(index, animated: true)
    }
}
func handleTapGesture(_ sender: UITapGestureRecognizer) {
    let location = sender.location(in: menuLayerView)
    for (index, cell) in cells.enumerated() {
        if cell.path.contains(location) {
            setSelectedIndex(index, animated: true)
        }
    }
}

4.彈出收起動畫

func openMenuView(withAnimate animate: Bool = true) {
    openMenu = true
    UIView.animate(withDuration: animate ? configure.animationDuration : 0, delay: 0, usingSpringWithDamping: 0.7, initialSpringVelocity: 5.0, options: .curveEaseInOut) {
        self.centerButton.transform = CGAffineTransform(rotationAngle: .pi * -0.5)
        self.centerButton.setImage(self.configure.closeImage, for: .normal)
        self.menuLayerView.transform = CGAffineTransform(scaleX: 1, y: 1).rotated(by: self.currentAngle)
    }
}
func closeMenuView(withAnimate animate: Bool = true) {
    openMenu = false
    let scale = (configure.centerRadius * 2) / bounds.width
    UIView.animate(withDuration: animate ? configure.animationDuration : 0, delay: 0, usingSpringWithDamping: 0.7, initialSpringVelocity: 5.0, options: .curveEaseInOut) {
        self.centerButton.transform = .identity
        self.centerButton.setImage(self.configure.openImage, for: .normal)
        self.menuLayerView.transform = CGAffineTransform(scaleX: scale, y: scale).rotated(by: self.currentAngle)
    }
}

5.內部細節

考慮到方便布局和使用,內部使用UIView疊加旋轉實現,這里也可以采用Layer直接繪制實現,相對UIView,層次結構會簡單很多

到此,相信大家對“iOS開發實現轉盤菜單Swift”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

红桥区| 宽城| 文化| 和平县| 巨鹿县| 温宿县| 静宁县| 高雄市| 象州县| 应城市| 辽阳市| 都匀市| 天镇县| 邹平县| 静乐县| 宝丰县| 延安市| 右玉县| 乐陵市| 东兴市| 夹江县| 六枝特区| 扬州市| 灵宝市| 老河口市| 高州市| 嘉定区| 莲花县| 汪清县| 乌鲁木齐市| 万州区| 襄城县| 清原| 隆回县| 乌拉特前旗| 长子县| 陆川县| 镶黄旗| 新化县| 托里县| 黎川县|