对于tablebar 相信大家都不陌生吧,但是对它的一些基本类型的修改及界面上的操作大家都有些无奈,需求和原控件远远的抛弃了,解决简单的tablebar 上面的横线问题
self.tabBar.barStyle = UIBarStyleBlack;
[UITabBar appearance].translucent = NO;
[[UITabBar appearance] setBarTintColor:[UIColor whiteColor]];
self.tabBar.layer.shadowColor = [UIColor lightGrayColor].CGColor;
self.tabBar.layer.shadowOffset = CGSizeMake(0, -1);
self.tabBar.layer.shadowOpacity =0.3;
完美修改tablebar 上面的虚线,并且添加阴影
网友评论