Как обнаружить постукивания строки состояния в iOS13? - PullRequest
0 голосов
/ 16 октября 2019

Я использовал приведенный ниже код, и он прекрасно работал в iOS12:

    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    super.touchesBegan(touches, with: event)
        let statusBarRect = UIApplication.shared.statusBarFrame

        guard let touchPoint = event?.allTouches?.first?.location(in: self.window) else { return }

        if statusBarRect.contains(touchPoint) {
            NotificationCenter.default.post(statusBarTappedNotification)
        }
}

Но в iOS13 он больше не работает. Есть мысли?

...