Remove the 1px Shadow From UISearchBar
When I added a UISearchBar
to UITableView.tableHeaderView
, it shows a border
So in order to remove the 1px, just
1 | self.searchBar.layer.borderColor = [UIColor yourColor].CGColor; |
The final result will be
References: