mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/MastodonUI/View/Button/HitTestExpandedButton.swift

19 lines
428 B
Swift

//
// HitTestExpandedButton.swift
// Mastodon
//
// Created by sxiaojian on 2021/2/1.
//
import UIKit
public final class HitTestExpandedButton: UIButton {
public var expandEdgeInsets = UIEdgeInsets(top: -10, left: -10, bottom: -10, right: -10)
public override func point(inside point: CGPoint, with event: UIEvent?) -> Bool {
return bounds.inset(by: expandEdgeInsets).contains(point)
}
}