mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-30 13:16:58 +02:00
24 lines
525 B
Swift
24 lines
525 B
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
/**
|
|
UIView subclass that ignores touches on itself.
|
|
*/
|
|
class PassthroughView: UIView {
|
|
public override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
|
|
let hitTarget = super.hitTest(point, with: event)
|
|
|
|
guard hitTarget == self else {
|
|
return hitTarget
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|