У меня есть первый виртуальный виртуальный канал в главном окне, и когда нажата кнопка, я анимирую второе окно из нижнего правого угла, которое останавливает почти 3/4 пути всего экрана.Все оживляет нормально.Проблема в том, что у меня есть cancelButton (красный X) снаружи второго окна, и когда я нажимаю на него, ничего не регистрируется.Я знаю, что это за пределами родительских границ, поэтому я попробовал hitTest
, но все равно ничего.
func setAnchorsForCancelButton() {
secondWindow?.addSubview(self.cancelButton)
cancelButton.bottomAnchor.constraint(equalTo: secondWindow!.topAnchor, constant: -10).isActive = true
cancelButton.leadingAnchor.constraint(equalTo: secondWindow!.leadingAnchor, constant: 10).isActive = true
// width and height are 35
}
func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
let translatedPoint = cancelButton.convert(point, from: secondWindow!.rootViewController!.view)
if (cancelButton.bounds.contains(translatedPoint)) {
return cancelButton.hitTest(translatedPoint, with: event)
}
return hitTest(point, with: event)
}
Красный X - кнопка отмены, которая находится снаружи второго окна.Он не получает сенсорные события
Как получить его, чтобы получать сенсорные события, пока он находится за пределами второго окна?
код, который запускает второе UIWindow:
class SecondWindow: NSObject {
lazy var cancelButton: UIButton = {
// button created
}()
var secondWindow: UIWindow?
let webViewVC = WebViewController() // instagram gets shown in here
let navVC: UINavigationController?
override init() {
super.init()
// some Notifications are in here
}
func animateFromBottom() {
guard let keyWindow = UIApplication.shared.keyWindow else { return }
let startingFrame = CGRect(x: keyWindow.frame.width - 10,
y: keyWindow.frame.height - 10,
width: 10,
height: 10)
let endingRect = CGRect(x: 0,
y: 150,
width: keyWindow.frame.width,
height: keyWindow.frame.height)
let navVC = UINavigationController(rootViewController: webViewVC)
secondWindow = UIWindow(frame: startingFrame)
secondWindow?.windowLevel = UIWindow.Level.normal
secondWindow?.rootViewController = navVC!
secondWindow?.makeKey()
secondWindow?.isHidden = false
// a function with an animation animates the second window to the endingFrame
setAnchorsForCancelButton()
}
func setAnchorsForCancelButton() {
secondWindow?.addSubview(self.cancelButton)
cancelButton.bottomAnchor.constraint(equalTo: secondWindow!.topAnchor, constant: -10).isActive = true
cancelButton.leadingAnchor.constraint(equalTo: secondWindow!.leadingAnchor, constant: 10).isActive = true
// width and height are 35
}
func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
let translatedPoint = cancelButton.convert(point, from: secondWindow!.rootViewController!.view)
if (cancelButton.bounds.contains(translatedPoint)) {
return cancelButton.hitTest(translatedPoint, with: event)
}
return hitTest(point, with: event)
}
}
кнопка от firstVC, которая запускает второе окно:
@obj func launchSecondWindow(_ sender: UIButton) {
let secondWindow = SecondWindow()
secondWidow.animateFromBottom()
}