1

Is there any possiblity to make the UISearchbar programmatically to resemble the same like the image below??

enter image description here

I have no idea to proceed with, pls help me out!

Preethi
  • 195
  • 1
  • 10

1 Answers1

0

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:

Customizing search bar in iPhone application Development

Community
  • 1
  • 1
Alessandro
  • 361
  • 1
  • 2
  • 7