Wednesday 28 March 2012

Add Custom Background imgae in UISearchBar

  Use this Code:

   UIImageView *backgroundView = [[UIImageView alloc] initWithFrame:searchbar.bounds];
    backgroundView.image = [UIImage imageNamed:@"app_bg.png"];
    [searchbar insertSubview:backgroundView atIndex:1]; // at index 1 but not 0
    [backgroundView release];

1 comment: