//先去掉底部的横线
[tabBarVC.tabBar setBackgroundImage:[MSDTools imageWithColor:[UIColor whiteColor]]];
[tabBarVC.tabBar setShadowImage:[MSDTools imageWithColor:[UIColor whiteColor]]];
//添加阴影
tabBarVC.tabBar.layer.shadowColor= UIColorFromHex(0xdddddd).CGColor; 设置阴影颜色
tabBarVC.tabBar.layer.shadowOffset = CGSizeMake(0, -2); 阴影偏移x,y向(上/下)偏移(-/+)2
tabBarVC.tabBar.layer.shadowOpacity = 0.6; 阴影透明度
tabBarVC.tabBar.layer.shadowRadius = 4.0f;//阴影半径
网友评论