Search code examples
iosobjective-cuitabbar

iOS - Getting desired shadow above UITabBar


I am trying to get my tab bar shadow to look like the one seen in this image:

What is the best way of doing this? I am using objective-c
Thanks


Solution

  • You can give shadow by using following code to any UI object

    tabBar.layer.shadowOffset = CGSize(width: 0, height: 0)
    tabBar.layer.shadowRadius = 2
    tabBar.layer.shadowColor = UIColor.black.cgColor
    tabBar.layer.shadowOpacity = 0.3
    

    Here i gave example for your tabControl object.