繁体   English   中英

使用滑动手势关闭视图-Swift 4

[英]Dismissing A View with a swipe gesture - Swift 4

在我的应用程序中,当用户在视图上向下滑动时,我希望视图散布到某个框架。 到目前为止,这是我尝试过的操作,但是由于某种原因,它一直给我这个错误:

“ #selector”的参数未引用“ @objc”方法,属性或初始化程序

这是我的代码如下:

class VideoLauncher: NSObject {

@objc func dismissView(myView: UIView) {
    UIView.animate(withDuration: 0.4) {
        if let theWindow = UIApplication.shared.keyWindow {
        myView.frame = CGRect(x:theWindow.frame.width - 15 , y: theWindow.frame.height - 15, width: 10 , height: 10)
        }
    }
}

func showVideoPlayer() {

    print("showing player")
    if let keyWindow = UIApplication.shared.keyWindow {
        let view = UIView(frame: keyWindow.frame)
        view.backgroundColor = UIColor.spaceBlue
        view.frame = CGRect(x: keyWindow.frame.width - 10, y: keyWindow.frame.height - 10, width: 10, height: 10)
        let videoPlayerView = VideoPlayerView(frame: keyWindow.frame)
        keyWindow.addSubview(view)
        view.addSubview(videoPlayerView)
        let slideDown = UISwipeGestureRecognizer(target: self, action: #selector(dismissView(myView: view)))
        view.addGestureRecognizer(slideDown)

        UIView.animate(withDuration: 0.5, delay: 0, usingSpringWithDamping: 1, initialSpringVelocity: 1, options: .curveEaseOut, animations: {
            view.frame = keyWindow.frame
        }, completion: { (completedAnimation) in
            UIApplication.shared.isStatusBarHidden = true
        })
    }
}

}

您必须像这样使用:

let slideDown = UISwipeGestureRecognizer(target: self, action: #selector(dismissView(gesture:)))
slideDown.direction = .down
view.addGestureRecognizer(slideDown)

您的职能:

@objc func dismissView(gesture: UISwipeGestureRecognizer) {
    UIView.animate(withDuration: 0.4) {
        if let theWindow = UIApplication.shared.keyWindow {
            gesture.view?.frame = CGRect(x:theWindow.frame.width - 15 , y: theWindow.frame.height - 15, width: 10 , height: 10)
        }
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM