去除tabbar的灰线

去掉导航栏的边界灰线

 [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];

self.navigationController.navigationBar.shadowImage = [[UIImage alloc] init];

去掉搜索框的边界黑线

 

[self.mySearchBar setBackgroundImage:[[UIImage alloc] init]];

去掉搜索框的文本输入框的阴影

 

在stroryboard中:选中搜索框——>右边in attribute inspector——>View 在Tint的颜色栏中选择 clear color

原文地址:https://www.cnblogs.com/it-k-50/p/5520011.html