xcode 7 swift how to make container view transparent

973 Views Asked by At

I have 5 tabs in my application. I need to add a floating button for quick action on all my tabs.

I've managed to add the floating button at the bottom, just above the tab bar using a container view. So the container is positioned at bottom right and has a view controller which holds the button.

The problem is, if I add table views to my pages, since the container view is in front, a part of table views gets hidden. How do I make the container view transparent, so the user can see and scroll properly the table view..

2

There are 2 best solutions below

0
David Seek On BEST ANSWER

Try to use yourContainerView.backgroundColor = UIColor.clearColor()

Swift 3: yourContainerView.backgroundColor = UIColor.clear

0
Yashwin Munsadwala On

You just need to decrease the value of alpha from the attribute inspector . 1 signifies max value (default value too) and 0 means complete transparent.