18 lines
429 B
Swift
18 lines
429 B
Swift
//
|
|
// SBUMarginView.swift
|
|
// SendbirdUIKit
|
|
//
|
|
// Created by Jaesung Lee on 2022/09/08.
|
|
// Copyright © 2022 Sendbird, Inc. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class SBUMarginView: UIView {
|
|
/// ``SBUMarginView`` pass through the UIEvent.
|
|
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
|
|
let view = super.hitTest(point, with: event)
|
|
return view == self ? nil : view
|
|
}
|
|
}
|