I want to remove search bar background and I have tried the following code in custom search bar subclass:
-(void)didAddSubview:(UIView *)subview
{
if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")])
{
subview.alpha=0;
}
}
every thing ok but when click on search bar or cancel search the background color set to black
any one knows how to remove this background color?
Hope it helps you