Floaty
Floaty copied to clipboard
How to cover Overlay on TabBar & NavigationBar
Hi How to cover the overlay on Tabbar & NavigtaionBar too ?
fileprivate func setOverlayView() {
setOverlayFrame()
overlayView.backgroundColor = overlayColor
overlayView.alpha = 0
overlayView.isUserInteractionEnabled = true
}
fileprivate func setOverlayFrame() {
if let superview = superview {
overlayView.frame = CGRect(
x: 0,y: 0,
width: superview.bounds.width,
height: superview.bounds.height
)
}
}