Is there any possiblity to make the UISearchbar programmatically to resemble the same like the image below??
I have no idea to proceed with, pls help me out!
Is there any possiblity to make the UISearchbar programmatically to resemble the same like the image below??
I have no idea to proceed with, pls help me out!
You can simply use a background image:
[[UISearchBar appearance] setSearchFieldBackgroundImage:[UIImage imageNamed:@"bgimage.png"]forState:UIControlStateNormal];
Or you can subclass the UISearchBar and override the layoutSubviews method like was explained in this thread: