首页 > 解决方案 > 在 UIWindow 上添加的视图中添加手势识别器

问题描述

我在上添加了一个子视图UIWindowtoast view现在我在 2 秒后自动删除它(吐司视图)。但是当用户滑动/触摸它时,我需要添加一个swipe/tap gesture recogniser来删除它。我尝试了很多但没有结果。

有没有办法实现这个,如果有解决方案,请告诉我。谢谢。

 class func showToast(withDuration duration: TimeInterval, afterDelay delay: TimeInterval, withMessage message: String, toastType type: UINotificationFeedbackGenerator.FeedbackType, hideToastAfterCompletion: Bool) {

    let notificationFeedback = UINotificationFeedbackGenerator()

    let window = UIApplication.shared.keyWindow

    let toastView = UIView()
    toastView.tag = 999
    toastView.accessibilityHint = "toastView"
    toastView.backgroundColor = UIColor.clear
    toastView.frame = CGRect(x: 0, y: 0, width: screenWidth, height: 80)
    toastView.isUserInteractionEnabled = true

    let toastLabelWidth = screenWidth*0.75
    let xPosition = (screenWidth - toastLabelWidth)/2
    let size = message.height(withConstrainedWidth: toastLabelWidth, font: UIFont.LatoRegular(16))

    var topPadding: CGFloat = 0.0
    if #available(iOS 11.0, *) {
        topPadding = window?.safeAreaInsets.top ?? 0.0
    }
    topPadding = (topPadding == 0.0 ?  20.0  : topPadding)

    let toastLabel = UILabel(frame: CGRect(x: xPosition, y: topPadding, width: toastLabelWidth, height: size))
    toastLabel.text = message
    toastLabel.numberOfLines = 0
    toastLabel.textAlignment = .center
    toastLabel.textColor = type.TextColor
    toastLabel.font = UIFont.LatoRegular(16)
    toastLabel.backgroundColor = UIColor.clear
    toastView.addSubview(toastLabel)
    toastView.frame.size.height = toastLabel.frame.origin.y + size + 32
    removeExistedToast()
    self.drawWave(forToastView: toastView, fillColor: type.ToastColor)
    toastView.transform = CGAffineTransform(translationX: 0, y: -toastView.frame.height)
    window?.addSubview(toastView)

    notificationFeedback.notificationOccurred(type)

    Toast.animateLayer(toastView: toastView)

    let swipeGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(toastViewSwiped))
    toastView.addGestureRecognizer(swipeGestureRecognizer)

    animate(toast: toastView, withDelay: delay, duration: 0.5, transform: CGAffineTransform.identity, {
        if $0 && hideToastAfterCompletion {
            animate(toast: toastView, withDelay: delay + duration, duration: 0.25, transform: CGAffineTransform(translationX: 0, y: -toastView.frame.height), { _ in
                toastView.removeFromSuperview()
            })
        }
    })
}

@objc private func toastViewSwiped(_ gesture: UIGestureRecognizer) {
    Toast.removeExistedToast()
}

class func removeExistedToast(){
    let window = UIApplication.shared.keyWindow
    window?.subviews.filter({ $0.tag == 999 && $0.accessibilityHint == "toastView" }).forEach({ (existedToast) in
        UIView.animate(withDuration: 0.25, animations: {
            existedToast.alpha = 0
        }, completion: { (_) in
            existedToast.removeFromSuperview()
        })
    })
}

这里 id 我的代码让我们检查一下,为手势识别器分配目标或添加目标时是否有任何错误。

标签: iosswiftuigesturerecognizertoastuiwindow

解决方案


在将“toastView”和“toastLabel”设置为该“Toast”中的全局​​并进行实例化之后,它起作用了,

private var window: UIWindow!

public var toastView: UIView!
private var toastLabel: UILabel!

private static let sharedInstance = Toast()

class func shared() -> Toast {
    return sharedInstance
}

我替换了以下代码,

animate(toast: toastView, withDelay: delay + duration, duration: 0.25, transform: CGAffineTransform(translationX: 0, y: -toastView.frame.height), { _ in
            toastView.removeFromSuperview()
        })

self.perform(#selector(self.removeExistedToast), with: nil, afterDelay: delay + duration)

通过制作

func removeExistedToast()

作为

@objc func removeExistedToast()

推荐阅读