Wednesday, January 12, 2011

Search Bar with Clear Background

    UISearchBar* mSearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0,160,320,40)];
    mSearchBar.showsCancelButton = NO;
    mSearchBar.userInteractionEnabled = YES;
    mSearchBar.backgroundColor = [UIColor clearColor];
    mSearchBar.tintColor = [UIColor whiteColor];
    mSearchBar.showsScopeBar = NO;
    [self.view addSubview:mSearchBar];
   
    for (UIView *subview in mSearchBar.subviews)
    {
        if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")])
        {
            [subview removeFromSuperview];
            break;
        }
    }

4 comments:

  1. Thank you.

    How can I add an image to pages with text in my iPod project please?

    Michael

    ReplyDelete
  2. Used this in one of the application, but not restricted by Apple.

    ReplyDelete