5

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..

Stacy J
  • 2,721
  • 15
  • 58
  • 92

2 Answers2

2

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

Swift 3: yourContainerView.backgroundColor = UIColor.clear

David Seek
  • 16,783
  • 19
  • 105
  • 136
2

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.