真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS開(kāi)發(fā)實(shí)現(xiàn)轉(zhuǎn)盤(pán)菜單Swift

本篇內(nèi)容主要講解“iOS開(kāi)發(fā)實(shí)現(xiàn)轉(zhuǎn)盤(pán)菜單Swift”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“iOS開(kāi)發(fā)實(shí)現(xiàn)轉(zhuǎn)盤(pán)菜單Swift”吧!

創(chuàng)新互聯(lián)建站主營(yíng)印江網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,重慶App定制開(kāi)發(fā),印江h(huán)5成都微信小程序搭建,印江網(wǎng)站營(yíng)銷(xiāo)推廣歡迎印江等地區(qū)企業(yè)咨詢(xún)

前言

使用Swift實(shí)現(xiàn)的轉(zhuǎn)盤(pán)菜單,主要用到UIBezierPathCALayer遮罩繪制扇形UIView,CATransform3DMakeRotation實(shí)現(xiàn)旋轉(zhuǎn)動(dòng)畫(huà)。代碼設(shè)計(jì)使用默認(rèn)configureCallback回調(diào)方便創(chuàng)建和設(shè)置基本屬性,參考UITableView代理和數(shù)據(jù)源模式,支持AutoLayoutFrame。

效果圖

iOS開(kāi)發(fā)實(shí)現(xiàn)轉(zhuǎn)盤(pán)菜單Swift

1.遮罩繪制扇形View

計(jì)算扇形曲線位置,通過(guò)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.旋轉(zhuǎn)動(dòng)畫(huà)

添加UIPanGestureRecognizer、UITapGestureRecognizer手勢(shì),根據(jù)手勢(shì)位置使用atan2函數(shù)計(jì)算旋轉(zhuǎn)角度,然后用CATransform3DMakeRotation圍繞Z軸旋轉(zhuǎn)做動(dòng)畫(huà) 核心代碼

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.彈出收起動(dòng)畫(huà)

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.內(nèi)部細(xì)節(jié)

考慮到方便布局和使用,內(nèi)部使用UIView疊加旋轉(zhuǎn)實(shí)現(xiàn),這里也可以采用Layer直接繪制實(shí)現(xiàn),相對(duì)UIView,層次結(jié)構(gòu)會(huì)簡(jiǎn)單很多

到此,相信大家對(duì)“iOS開(kāi)發(fā)實(shí)現(xiàn)轉(zhuǎn)盤(pán)菜單Swift”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!


標(biāo)題名稱(chēng):iOS開(kāi)發(fā)實(shí)現(xiàn)轉(zhuǎn)盤(pán)菜單Swift
網(wǎng)站鏈接:http://weahome.cn/article/gcspgh.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部