I am new in iphone, i want to change the search bar background to clear color how to change it to clear color. My code is:
UISearchBar *mySearchBar = [[UISearchBar alloc]initWithFrame:CGRectMake(10, 550, 330, 42)]; mySearchBar.delegate = self; mySearchBar.showsCancelButton = YES; mySearchBar.placeholder=@"Search here.."; mySearchBar.tintColor=[UIColor clearColor]; [self.view addSubview:mySearchBar]; Thanks in Advance: