If I understood correctly from the following comment that you posted, you want to change the color of the UITabBar to black, but still blurry.
And yes, I noticed that the UITabBarController is blurry by default, but I would like to make it blurry with a specific style (.Dark).
Doing this since iOS 7 has really become quite simple. Just change the barStyle your UITabBar to .black . Put the following code in your UIViewController viewDidLoad method (note that UITabBar is translucent by default, so you don't need to specify it again).
tabBarController?.tabBar.barStyle = .black
If you want to set it back to a regular, white barStyle , return it to .default .
tabBarController?.tabBar.barStyle = .default
You can even do this from within the Interface Builder by selecting the tab bar in the UITabBarController hierarchy and changing its Style to black.

source share