sudeepag/SAConfettiView

Touch in superview is blocked by confettiView

Closed this issue · 1 comments

I added
super.userInteractionEnabled = false
to init to fix the problem

Thanks for your great work!

Adding to the confettiView itself will also fix this:

let confettiView = SAConfettiView(frame: self.view.bounds)
confettiView.userInteractionEnabled = false
self.view.addSubview(confettiView)